This commit is contained in:
Tutur33
2024-03-02 21:15:14 +01:00
parent 90da5b1a97
commit 95daf7ef0f
10 changed files with 804 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
const { Events, ActivityType } = require("discord.js");
module.exports = {
name: Events.ClientReady,
async execute(client: any) {
console.log(`le bot ${client.user.tag} est en ligne`)
}
};