mirror of
https://github.com/arthur-pbty/gestion-perso.git
synced 2026-06-03 23:36:35 +02:00
10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
const { Events, ActivityType } = require("discord.js");
|
|
const addBaseInDB = require("../fonctions/addBaseInDB");
|
|
|
|
module.exports = {
|
|
name: Events.ClientReady,
|
|
async execute(client: any) {
|
|
addBaseInDB(client);
|
|
console.log(`le bot ${client.user.tag} est en ligne`)
|
|
}
|
|
}; |