1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 01:21:56 +00:00
musix-oss/struct/Client.js
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;
}
};