diff --git a/src/commands/ping.ts b/src/commands/ping.ts index bcb21b4..1ba33a0 100644 --- a/src/commands/ping.ts +++ b/src/commands/ping.ts @@ -5,11 +5,11 @@ export default class PingCommand extends SlashCommand { super(creator, { name: 'ping', description: 'pongs' - }); + }) } // eslint-disable-next-line @typescript-eslint/no-unused-vars async run(_ctx: CommandContext) { - return `pong from ${this.client.user.tag}!`; + return `pong from ${this.client.user.tag}!` } }