mirror of
https://github.com/thedrewen/protojx-manager.git
synced 2026-03-21 09:48:56 +01:00
Initial commit
This commit is contained in:
10
src/commands/utility/ping.ts
Normal file
10
src/commands/utility/ping.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import { CommandInteraction, SlashCommandBuilder } from "discord.js";
|
||||
|
||||
export default {
|
||||
data: new SlashCommandBuilder()
|
||||
.setName('ping')
|
||||
.setDescription('Pong again!'),
|
||||
async execute(interaction : CommandInteraction) {
|
||||
await interaction.reply('Pong !');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user