Command-fix/app.js
2017-09-29 19:38:00 -04:00

15 lines
250 B
JavaScript

/* Application State */
var Application = function () {
this.guild = null;
this.logChannel = null;
this.warnings = [];
this.bans = [];
this.stats = {
joins: 0,
leaves: 0,
warnings: 0
};
};
module.exports = new Application();