mirror of
https://github.com/arthur-pbty/selfbot-discord.git
synced 2026-06-03 23:36:23 +02:00
8 lines
199 B
TypeScript
8 lines
199 B
TypeScript
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`)
|
|
}
|
|
}; |