delete: botOff Command

This commit is contained in:
Siwoo Jeon 2023-12-02 16:28:41 +09:00
parent 785db5431b
commit 1fd2bc814f
Signed by: migan
GPG key ID: C4151385FFD2082A

View file

@ -1,13 +0,0 @@
import { Command } from '../modules'
import { type Message } from 'discord.js'
export default class extends Command {
public constructor() {
super('봇꺼', true)
}
public execute(msg: Message, args: string[]) {
msg.channel.send('ㅇㅇ').finally(() => {
msg.client.destroy()
})
}
}