CoolFace
Apppublic

pythonsnake/counting-bot

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
ready.js10 linesDownload Raw Back to events
1const { Events } = require('discord.js');2 3module.exports = {4	name: Events.ClientReady,5	once: true,6	execute(client) {7		console.log(`Ready!`);8	},9};10