mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2025-05-31 19:00:30 +00:00
17 lines
283 B
JavaScript
17 lines
283 B
JavaScript
/* Application State */
|
|
var State = function () {
|
|
this.guild = null;
|
|
this.logChannel = null;
|
|
this.warnings = [];
|
|
this.responses = null;
|
|
this.bans = [];
|
|
this.stats = {
|
|
joins: 0,
|
|
ruleAccepts: 0,
|
|
leaves: 0,
|
|
warnings: 0
|
|
};
|
|
};
|
|
|
|
module.exports = new State();
|