JaBa/newEvents/ready.js

15 lines
249 B
JavaScript
Raw Normal View History

import logger from "../helpers/logger.js";
export const data = {
name: "ready",
once: true,
};
2024-12-06 21:22:38 +05:00
2024-12-07 14:47:05 +05:00
/**
*
* @param {import("../base/Client.JaBaClient")} client
*/
export async function run(client) {
logger.log(client.user.tag + " is online!");
}