stackage-server/app/main.hs
2014-06-01 11:58:37 +02:00

10 lines
277 B
Haskell

import Application (makeApplication)
import Prelude (IO)
import Prelude (Bool(..))
import Settings (parseExtra)
import Yesod.Default.Config (fromArgs)
import Yesod.Default.Main (defaultMainLog)
main :: IO ()
main = defaultMainLog (fromArgs parseExtra) (makeApplication False)