register commands to guilds the bot is in
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
mightypanders
2022-03-23 21:59:27 +01:00
parent 9b2ddc35fa
commit 4dad1b9ad8
2 changed files with 23 additions and 9 deletions

8
server/commands/pong.ts Normal file
View File

@ -0,0 +1,8 @@
import { Command } from '../structures/command'
export default new Command({
name: 'ping',
description: 'Does a pong',
run: async ({ interaction }) => {
interaction.reply('pong')
}
})