You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
291 B

  1. const { Client, Collection } = require('discord.js');
  2. module.exports = class extends Client {
  3. constructor(config) {
  4. super({
  5. disableEveryone: true,
  6. disabledEvents: ['TYPING_START'],
  7. });
  8. this.commands = new Collection();
  9. this.queue = new Map();
  10. this.config = config;
  11. }
  12. };