10 lines
271 B
TypeScript
10 lines
271 B
TypeScript
import { Command, CommandContext } from '../../mod.ts'
|
|
|
|
export default class PingCommand extends Command {
|
|
name = 'ping'
|
|
|
|
execute(ctx: CommandContext): void {
|
|
console.log(ctx.args, ctx.argString)
|
|
ctx.message.reply(`Pong! Latency: ${ctx.client.ping}ms`)
|
|
}
|
|
}
|