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