Polarcraft/discordbot/events/ready.js

13 lines
269 B
JavaScript
Raw Normal View History

2023-08-02 14:16:30 +02:00
const { Events } = require('discord.js');
const deployCommands = require('../functions/deployCommands');
module.exports = {
name: Events.ClientReady,
once: true,
execute(client) {
console.log(`Ready! Logged in as ${client.user.tag}`);
deployCommands();
},
};