diff options
author | Daniel Gnoutcheff <gnoutchd@softwarefreedom.org> | 2022-01-25 20:04:10 -0500 |
---|---|---|
committer | Daniel Gnoutcheff <gnoutchd@softwarefreedom.org> | 2022-01-25 20:04:10 -0500 |
commit | 0a3efc56732f79304845a6e6d381c793f38e6c2c (patch) | |
tree | cdd3c1a51c8cca0b0e8dbbb0fa4f860232b0d933 /app | |
parent | a1a17acb326020f1b57f587230cb439e901784df (diff) |
Diffstat (limited to 'app')
-rw-r--r-- | app/main.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/app/main.hs b/app/main.hs new file mode 100644 index 0000000..7c6327f --- /dev/null +++ b/app/main.hs @@ -0,0 +1,8 @@ +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 |