Some checks failed
Auto Build and Push Docker Image / build (push) Failing after 15s
11 lines
279 B
TypeScript
11 lines
279 B
TypeScript
import { Events } from 'discord.js';
|
|
import { ExtendedClient } from '../structures/ExtendedClient.js';
|
|
|
|
export default {
|
|
name: Events.ClientReady,
|
|
once: true,
|
|
execute(client: ExtendedClient) {
|
|
console.log(`Ready! Logged in as ${client.user?.tag}`);
|
|
},
|
|
};
|