import { CacheType, ChatInputCommandInteraction, SlashCommandBuilder } from 'discord.js'; import { msg_help } from '../messages'; const name = "help" function register() { return new SlashCommandBuilder() .setName(name) .setDescription('Pomoc') } async function execute(interaction: ChatInputCommandInteraction) { await interaction.reply(msg_help()); } export default { name, register, execute }