cache.js 104 B

1234567
  1. const NodeCache = require('node-cache')
  2. module.exports = {
  3. init() {
  4. return new NodeCache()
  5. }
  6. }