此代码在 0.10.0 更改之前与 Heist 一起使用
main = do
Right ts <- loadTemplates "templates" $
bindSplices mySplices defaultHeistState
etc..
现在我得到了错误
testdb.hs:59:33: Not in scope: `defaultHeistState'
我知道 loadTemplates 的类型签名已更改为
loadTemplates :: FilePath -> EitherT [String] IO TemplateRepoSource
但是我无法弄清楚如何调整我的旧代码以使其正常工作。