import { ICommand } from 'wokcommands'
// Best practice for the built-in help menu
description: 'Replies with "Pong!"',
// This method is invoked only once whenever the command is registered
// "client" is the client object for your bot
// "instance" is your WOKCommands instance
init: (client, instance) => {
console.log('ran only one time when the bot starts up')
// This method is invoked anytime the command is ran
callback: ({ message }) => {