Skip to content

Instantly share code, notes, and snippets.

View spd789562's full-sized avatar

Leo Lin spd789562

View GitHub Profile
@Frontesque
Frontesque / SlashCommandManager.js
Created January 22, 2021 18:24
Discord.js V12 slash commands manager
module.exports = class SlashCommandManager {
constructor(client) {
this.client = client;
};
async createGlobalCommand(data = {}) {
return this.client.api.applications(this.client.user.id).commands.post({
data: data
});