8 lines
279 B
Haskell
8 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
|