Added CacheStore server side, working with blog on client side more.

This commit is contained in:
2018-10-31 21:01:03 +11:00
parent 2ca45b154c
commit 5b4be02593
10 changed files with 294 additions and 9 deletions

View File

@ -26,7 +26,8 @@ const
Configuration = require('./../config/Configuration'),
DatabaseConnection = require('./../database/DatabaseConnection'),
Server = require('./../server/Server'),
Email = require('./../email/Email')
Email = require('./../email/Email'),
CacheStore = require('./../cache/CacheStore')
;
class App {
@ -35,9 +36,11 @@ class App {
this.database = new DatabaseConnection(this);
this.server = new Server(this);
this.email = new Email(this);
this.store = new CacheStore(this);
}
getConfig() { return this.config; }
getCacheStore() {return this.store;}
getDiscord() { return this.discord; }
getDatabase() { return this.database; }
getPalaise() { return this.palaise; }