feat(cmd/deploy): adding the deploy command

This commit is contained in:
Raphael 2025-07-27 18:28:19 +02:00
parent bca3bd0c2a
commit 2b02553a4c
6 changed files with 250 additions and 0 deletions

View 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`);
},
};