diff options
Diffstat (limited to 'src/Hakyll/Core/Rules.hs')
-rw-r--r-- | src/Hakyll/Core/Rules.hs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Hakyll/Core/Rules.hs b/src/Hakyll/Core/Rules.hs index 4aa497c..28aac1f 100644 --- a/src/Hakyll/Core/Rules.hs +++ b/src/Hakyll/Core/Rules.hs @@ -16,10 +16,11 @@ module Hakyll.Core.Rules ) where import Control.Applicative (Applicative, (<$>)) -import Control.Monad.Writer -import Control.Monad.Reader +import Control.Monad.Writer (WriterT, execWriterT, tell) +import Control.Monad.Reader (ReaderT, runReaderT, ask) import Control.Arrow (second, (>>>), arr, (>>^)) -import Control.Monad.State +import Control.Monad.State (State, evalState, get, put) +import Data.Monoid (Monoid, mempty, mappend) import Data.Typeable (Typeable) import Data.Binary (Binary) |