mirror of
https://github.com/citra-emu/discord-bot.git
synced 2024-12-23 05:05:27 +00:00
10 lines
190 B
JavaScript
10 lines
190 B
JavaScript
|
/* Application State */
|
||
|
var Application = function() {
|
||
|
this.guild = null;
|
||
|
this.logChannel = null;
|
||
|
this.warnings = [];
|
||
|
this.bans = [];
|
||
|
};
|
||
|
|
||
|
module.exports = new Application();
|