generated from lucxjo/template
10 lines
252 B
TypeScript
10 lines
252 B
TypeScript
import type { CommandInteraction } from "discord.js";
|
|
import { Discord, Slash } from "discordx";
|
|
|
|
@Discord()
|
|
export class Example {
|
|
@Slash({ description: "ping" })
|
|
ping(interaction: CommandInteraction): void {
|
|
interaction.reply("pong!");
|
|
}
|
|
}
|