UNPKG

@zyksouu/discordjs-remaster

Version:

DiscordJS Api remastered

10 lines (9 loc) 387 B
const { Client, GatewayIntentBits } = require("discord.js"); const { CommandsBuilder } = require('../Utils/CommandsBuilder'); export class DiscordJS { newClient() { return new Client( {intents: [GatewayIntentBits.Guilds]} ); }; newCommand(name) {CommandsBuilder.newCommand(name)}; commands = []; prefix = "!"; databases = []; //Add db table as array here }