2019-01-04 13:43:53 -04:00
|
|
|
{- git-annex benchmark data types.
|
|
|
|
-
|
|
|
|
- Copyright 2019 Joey Hess <id@joeyh.name>
|
|
|
|
-
|
2019-03-13 15:48:14 -04:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2019-01-04 13:43:53 -04:00
|
|
|
-}
|
|
|
|
|
|
|
|
module Types.Benchmark where
|
|
|
|
|
|
|
|
import Annex
|
|
|
|
import Types.Command
|
|
|
|
|
|
|
|
type BenchmarkGenerator = [String] -> Annex (IO ())
|
|
|
|
|
|
|
|
type MkBenchmarkGenerator = [Command] -> BenchmarkGenerator
|