1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-03 22:34:27 +00:00
Files
musix-oss/struct/Client.js
MatteZ02 bf618eecd7 Initial
2019-08-02 11:32:00 +03:00

19 lines
329 B
JavaScript

const { Client, Collection } = require('discord.js');
module.exports = class extends Client {
constructor(config) {
super({
disableEveryone: true,
disabledEvents: ['TYPING_START']
});
this.commands = new Collection();
this.cooldowns = new Collection();
this.queue = new Map();
this.config = config;
}
};