Command-fix/app.js

15 lines
250 B
JavaScript
Raw Normal View History

2016-12-08 04:52:37 +01:00
/* Application State */
2017-09-30 01:38:00 +02:00
var Application = function () {
this.guild = null;
this.logChannel = null;
this.warnings = [];
this.bans = [];
this.stats = {
joins: 0,
leaves: 0,
warnings: 0
};
2016-12-08 04:52:37 +01:00
};
module.exports = new Application();