mtlstats/app/Main.hs

10 lines
180 B
Haskell
Raw Normal View History

2019-08-08 16:34:03 -04:00
module Main where
2019-08-13 10:11:10 -04:00
import Control.Monad.Trans.State (evalStateT)
import UI.NCurses (runCurses)
import Mtlstats
2019-08-08 16:34:03 -04:00
main :: IO ()
2019-08-13 10:11:10 -04:00
main = runCurses $ initState >>= evalStateT mainLoop