f903c62ed0
Signed-off-by: The-Best-Codes <106822363+The-Best-Codes@users.noreply.github.com>
12 lines
415 B
TypeScript
12 lines
415 B
TypeScript
import { ChatInputCommandInteraction, SlashCommandBuilder } from "discord.js";
|
|
import packageJson from "../package.json";
|
|
|
|
export default {
|
|
data: new SlashCommandBuilder().setName("ping").setDescription("Ping!"),
|
|
|
|
async execute(data: { interaction: ChatInputCommandInteraction }) {
|
|
const interaction = data.interaction;
|
|
await interaction.reply(`Bot is online, version ${packageJson.version}.`);
|
|
},
|
|
};
|