TheOchulus/events/ready.js

9 lines
210 B
JavaScript
Raw Normal View History

2023-11-20 00:59:41 +01:00
import { Events } from 'discord.js';
2023-11-18 00:47:17 +01:00
2023-11-20 00:59:41 +01:00
export const name = Events.ClientReady;
export const once = true;
export async function execute(client) {
2023-11-18 00:47:17 +01:00
console.log(`Ready! Logged in as ${client.user.tag}`);
2023-11-20 00:59:41 +01:00
}