This commit is contained in:
Jamie Curnow
2018-06-20 08:48:14 +10:00
parent 80d78cbf25
commit b38b988da4
40 changed files with 1419 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
'use strict';
const UserModel = require('../models/user');
let cache = {
User: new UserModel.Model()
};
module.exports = cache;