mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 09:55:39 +01:00
15 lines
267 B
JavaScript
15 lines
267 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();
|