diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/Main.hs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/Main.hs b/app/Main.hs new file mode 100644 index 0000000..666dde6 --- /dev/null +++ b/app/Main.hs @@ -0,0 +1,11 @@ +module Main where + +import Lib +import Toml + +main :: IO () +main = do + manifest <- Lib.loadManifest + case manifest of + Left errs -> print $ prettyTomlDecodeErrors errs + Right manifest -> startApp manifest |