9 lines
210 B
JavaScript
9 lines
210 B
JavaScript
import { Events } from 'discord.js';
|
|
|
|
export const name = Events.ClientReady;
|
|
|
|
export const once = true;
|
|
|
|
export async function execute(client) {
|
|
console.log(`Ready! Logged in as ${client.user.tag}`);
|
|
} |