import { ICommand } from 'wokcommands'
description: 'Replies with pong', // Required for slash commands
slash: 'both', // Create both a slash and legacy command
testOnly: true, // Only register a slash command for the testing guilds
callback: ({ message, interaction }) => {
// OPTION 1: Replying to each method manually
// OPTION 2: Replying with a string as "content"
// OPTION 3: Replying with a reply object that will be used
// in message.reply() or interaction.reply()