mirror of
https://github.com/commercialhaskell/stackage-server.git
synced 2026-01-11 19:58:28 +01:00
10 lines
277 B
Haskell
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)
|