UNPKG

artibot

Version:

Modern, fast and modular open-source Discord bot

12 lines 455 B
import InteractionManager from "../interactionManager.js"; export const name = "ready"; /** Register interactions into Discord API */ export async function execute(client, artibot) { artibot.interactionManager = new InteractionManager({ token: client.token, artibot }); artibot.interactionManager.generateData(artibot.modules); await artibot.interactionManager.register(); } //# sourceMappingURL=registerInteractions.js.map