mirror of
https://github.com/arthur-pbty/gestion-perso.git
synced 2026-06-03 15:07:27 +02:00
8 lines
194 B
JavaScript
8 lines
194 B
JavaScript
const { Events, ActivityType } = require("discord.js");
|
|
|
|
module.exports = {
|
|
name: Events.ClientReady,
|
|
async execute(client) {
|
|
console.log(`le bot ${client.user.tag} est en ligne`)
|
|
}
|
|
}; |