mirror of
https://github.com/yuzu-emu/Command-fix
synced 2024-11-24 09:28:16 +00:00
9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
/* Application State */
|
|
var Application = function() {
|
|
this.guild = null;
|
|
this.logChannel = null;
|
|
this.warnings = [];
|
|
this.bans = [];
|
|
};
|
|
|
|
module.exports = new Application();
|