dbCollections.js
function dbCollections(database) {
// List of collections available
return {
ProfileClln: database.collection('profileClln'),
UserClln: database.collection('userClln'),
/**
* Holds data about state of the system
* @type {Object}
*/
PersistClln: database.collection('persistClln')
}
}
module.exports = dbCollections;