summaryrefslogtreecommitdiff
path: root/src/Text/Hakyll/Internal/Cache.hs
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2010-03-11 11:03:40 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2010-03-11 11:03:40 +0100
commitd25b0b683410211530c977625685349b11b8ff72 (patch)
tree4934b453d7a7b74f34307cf85a3c5a36871558ea /src/Text/Hakyll/Internal/Cache.hs
parent35e824648499d868b2c37b41ecc8f847f452917b (diff)
downloadhakyll-d25b0b683410211530c977625685349b11b8ff72.tar.gz
Moved some modules around for fun and profit.
Diffstat (limited to 'src/Text/Hakyll/Internal/Cache.hs')
-rw-r--r--src/Text/Hakyll/Internal/Cache.hs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Text/Hakyll/Internal/Cache.hs b/src/Text/Hakyll/Internal/Cache.hs
index d586f45..2a196f1 100644
--- a/src/Text/Hakyll/Internal/Cache.hs
+++ b/src/Text/Hakyll/Internal/Cache.hs
@@ -6,10 +6,11 @@ module Text.Hakyll.Internal.Cache
import Control.Monad ((<=<))
import Control.Monad.Reader (liftIO)
-import Text.Hakyll.Hakyll (Hakyll)
-import Text.Hakyll.File
import Data.Binary
+import Text.Hakyll.File
+import Text.Hakyll.HakyllMonad (Hakyll)
+
-- | We can store all datatypes instantiating @Binary@ to the cache. The cache
-- directory is specified by the @HakyllConfiguration@, usually @_cache@.
storeInCache :: (Binary a) => a -> FilePath -> Hakyll ()