blob: 8e52bb4824e67ef1b81965dd28b57fe92a7087bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|