feat(cmd/deploy): adding the deploy command
This commit is contained in:
parent
bca3bd0c2a
commit
2b02553a4c
6 changed files with 250 additions and 0 deletions
9
src/events/client/ready.ts
Normal file
9
src/events/client/ready.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import { Events } from 'discord.js'
|
||||
|
||||
export default {
|
||||
name: Events.ClientReady,
|
||||
once: true,
|
||||
execute(client) {
|
||||
console.log(`✅ | ${client.user.username} is now running under TTS bot`);
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue