mirror of
https://github.com/github/semantic.git
synced 2024-12-26 00:12:29 +03:00
13 lines
241 B
Haskell
13 lines
241 B
Haskell
{-# OPTIONS_GHC -Wno-unused-imports -Wno-unused-top-binds #-}
|
|
module Main (main) where
|
|
|
|
import Gauge
|
|
import qualified Evaluation
|
|
import qualified Tagging
|
|
|
|
main :: IO ()
|
|
main = defaultMain
|
|
[ Tagging.benchmarks
|
|
, Evaluation.benchmarks
|
|
]
|