Files
DiscordBotOceano/dist/src/utils/getApplicationCommands.js
2024-04-07 12:29:35 +02:00

8 lines
256 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = async (client) => {
const applicationCommands = await client.application.commands;
await applicationCommands.fetch();
return applicationCommands;
};