blob: 4e6a43802f7912983ebb0ae706456bacbfdb2765 (
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 m -> startApp m
|