From 4bc34b8a98ffa1e7f3478a596b73c4ab12d9cb1b Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Thu, 14 Jan 2010 20:46:08 +0100 Subject: Added ReaderT to our stack. --- src/Text/Hakyll/Hakyll.hs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/Text/Hakyll/Hakyll.hs (limited to 'src/Text/Hakyll/Hakyll.hs') diff --git a/src/Text/Hakyll/Hakyll.hs b/src/Text/Hakyll/Hakyll.hs new file mode 100644 index 0000000..3690914 --- /dev/null +++ b/src/Text/Hakyll/Hakyll.hs @@ -0,0 +1,15 @@ +module Text.Hakyll.Hakyll + ( HakyllConfiguration (..) + , Hakyll + ) where + +import Text.Hakyll.Context (Context) +import System.FilePath (FilePath) +import Control.Monad.Reader (ReaderT) + +data HakyllConfiguration = HakyllConfiguration + { hakyllDestination :: FilePath + , hakyllGlobalContext :: Context + } + +type Hakyll = ReaderT HakyllConfiguration IO -- cgit v1.2.3