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