mirror of
https://github.com/JonnyBro/JaBa.git
synced 2025-01-01 16:23:02 +05:00
14 lines
249 B
JavaScript
14 lines
249 B
JavaScript
import logger from "../helpers/logger.js";
|
|
|
|
export const data = {
|
|
name: "ready",
|
|
once: true,
|
|
};
|
|
|
|
/**
|
|
*
|
|
* @param {import("../base/Client.JaBaClient")} client
|
|
*/
|
|
export async function run(client) {
|
|
logger.log(client.user.tag + " is online!");
|
|
}
|