The function currently is just an alias for evalKVDB:
evalKVDB :: forall db a. D.DB db => D.DBHandle db -> L.KVDBL db a -> LangL a
withKVDB :: forall db a. D.DB db => D.DBHandle db -> L.KVDBL db a -> LangL a
withKVDB = evalKVDB
But it can be more high level:
withKVDB :: forall db a. D.DB db => D.KVDBConfig db -> L.LangL a -> LangL a
The function currently is just an alias for
evalKVDB
:But it can be more high level: