mirror of
https://github.com/github/semantic.git
synced 2024-11-23 16:37:50 +03:00
12 lines
179 B
Haskell
12 lines
179 B
Haskell
module Main (main) where
|
|
|
|
import Gauge
|
|
import qualified Evaluation
|
|
import qualified Tagging
|
|
|
|
main :: IO ()
|
|
main = defaultMain
|
|
[ Tagging.benchmarks
|
|
, Evaluation.benchmarks
|
|
]
|