blob: 0a45a16a9d22b919a16b055bc040c99607747e6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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");
}
}
|