cache.js 104 Bytes
Newer Older
1 2 3 4 5 6 7
const NodeCache = require('node-cache')

module.exports = {
  init() {
    return new NodeCache()
  }
}