ncurses framework

This commit is contained in:
Jonathan Lamothe
2019-08-13 10:11:10 -04:00
parent a95d8af96c
commit 44f596102e
7 changed files with 34 additions and 11 deletions
+12
View File
@@ -0,0 +1,12 @@
module Mtlstats (initState, mainLoop) where
import Control.Monad.Trans.State (StateT)
import UI.NCurses (Curses)
import Mtlstats.Types
initState :: Curses ProgState
initState = return ProgState
mainLoop :: StateT ProgState Curses ()
mainLoop = return ()