Command-fix/app.js

15 lines
267 B
JavaScript
Raw Normal View History

2016-12-07 22:52:37 -05:00
/* Application State */
var Application = function() {
this.guild = null;
this.logChannel = null;
this.warnings = [];
this.bans = [];
this.stats = {
joins: 0,
leaves: 0,
warnings: 0
};
2016-12-07 22:52:37 -05:00
};
module.exports = new Application();