const Discord = require("discord.js"); const postgresql = require("pg"); global.database = new postgresql.Pool(); module.exports = { name: 'clientReady', async execute() { globalThis.client.user.setActivity("a ball of yarn!! >w<", { type: Discord.ActivityType.Playing }); console.log("clientReady"); } }