TheOchulus/events/ready.js

9 lines
210 B
JavaScript
Raw Normal View History

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