Command-fix/app.js
2016-12-07 22:56:16 -05:00

10 lines
190 B
JavaScript

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