diff options
Diffstat (limited to 'Lazymail.hs')
-rw-r--r-- | Lazymail.hs | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/Lazymail.hs b/Lazymail.hs deleted file mode 100644 index fbb7e3e..0000000 --- a/Lazymail.hs +++ /dev/null @@ -1,22 +0,0 @@ -{- Lazymail monad. - - - - Copyright 2013 Raúl Benencia <rul@kalgan.cc> - - - - Licensed under the GNU GPL version 3 or higher - - - -} - -module Lazymail where - -import Control.Monad.Reader -import Control.Monad.State - -import Config -import State -import Types - -run :: Lazymail a -> IO (a, LazymailState) -run k = - let config = customConfig - state = initialState { basePath = initialPath config } - in runStateT (runReaderT k config) state
\ No newline at end of file |