mirror of
https://github.com/ahmadk953/poixpixel-discord-bot.git
synced 2025-05-10 10:43:06 +00:00
Added main files
This commit is contained in:
parent
7dfe149a2b
commit
0c96eed83a
8 changed files with 648 additions and 0 deletions
9
src/commands/utility/ping.ts
Normal file
9
src/commands/utility/ping.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
import { SlashCommandBuilder, CommandInteraction } from 'discord.js';
|
||||
|
||||
export const data = new SlashCommandBuilder()
|
||||
.setName('ping')
|
||||
.setDescription('Replies with Pong!');
|
||||
|
||||
export async function execute(interaction: CommandInteraction) {
|
||||
return interaction.reply('Pong!');
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue