wiki/server/core/cache.js

8 lines
104 B

const NodeCache = require('node-cache')
module.exports = {
init() {
return new NodeCache()
}
}