8 lines
256 B
JavaScript
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;
|
|
};
|