mirror of
https://github.com/commercialhaskell/stackage-server.git
synced 2026-01-12 12:18:29 +01:00
9 lines
279 B
Haskell
9 lines
279 B
Haskell
import Prelude (IO)
|
|
import Yesod.Default.Config (fromArgs)
|
|
import Yesod.Default.Main (defaultMainLog)
|
|
import Settings (parseExtra)
|
|
import Application (makeApplication)
|
|
|
|
main :: IO ()
|
|
main = defaultMainLog (fromArgs parseExtra) makeApplication
|