From 8602f23f7bcdcc3bec65ec98c70ee3f295482856 Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Wed, 20 Jan 2010 16:46:22 +0100 Subject: Made site and cache directory configurable. Caching stubs. --- src/Text/Hakyll/Internal/Cache.hs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/Text/Hakyll/Internal/Cache.hs (limited to 'src/Text/Hakyll/Internal') 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 -- cgit v1.2.3