mirror of
https://github.com/arthur-pbty/gestion.git
synced 2026-06-03 23:36:35 +02:00
11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
const { Events, ActivityType } = require("discord.js")
|
|
module.exports = {
|
|
|
|
name : Events.ClientReady,
|
|
async run(client) {
|
|
|
|
client.application.commands.set(client.commands.map(command => command.data));
|
|
console.log(`${client.user.username} est en ligne`);
|
|
|
|
},
|
|
}; |