summaryrefslogtreecommitdiff
path: root/app/Main.hs
blob: 666dde6462d556c4767a58b78eaf22390ce30815 (plain)
1
2
3
4
5
6
7
8
9
10
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