summaryrefslogtreecommitdiff
path: root/src/Text/Hakyll/Internal
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2010-01-20 16:46:22 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2010-01-20 16:46:22 +0100
commit8602f23f7bcdcc3bec65ec98c70ee3f295482856 (patch)
tree8f86b9cb541ba0c4f1167a2211db090480d2f5b2 /src/Text/Hakyll/Internal
parentd79022fb3481dd2f6c2c0d9112c6c6f37c71204e (diff)
downloadhakyll-8602f23f7bcdcc3bec65ec98c70ee3f295482856.tar.gz
Made site and cache directory configurable. Caching stubs.
Diffstat (limited to 'src/Text/Hakyll/Internal')
-rw-r--r--src/Text/Hakyll/Internal/Cache.hs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Text/Hakyll/Internal/Cache.hs b/src/Text/Hakyll/Internal/Cache.hs
new file mode 100644
index 0000000..8e52bb4
--- /dev/null
+++ b/src/Text/Hakyll/Internal/Cache.hs
@@ -0,0 +1,12 @@
+module Text.Hakyll.Internal.Cache
+ ( storeInCache
+ , getFromCache
+ ) where
+
+import Text.Hakyll.Hakyll (Hakyll)
+
+storeInCache :: (Show a) => a -> FilePath -> Hakyll ()
+storeInCache = undefined
+
+getFromCache :: (Read a) => FilePath -> Hakyll (Maybe a)
+getFromCache = undefined