too many things

This commit is contained in:
nin0 2025-05-15 07:05:16 -04:00
parent 3b892b3db0
commit b5dd0ed413
Signed by: nin0
SSH key fingerprint: SHA256:NOoDnFVvZNFvqfXCIhzr6oCTDImZAbTTuyAysZ8Ufk8
9 changed files with 1187 additions and 3 deletions

View file

@ -3,6 +3,7 @@ import { selfappReq } from "./selfappReq";
import { setupJoinRequestHandler } from "./joinRequestHandler";
import { Constants } from "./Constants";
import { Divider, generateList, generateUserComponent, Header } from "./cv2";
import { openDb } from "./database";
export const client = new Client({
auth: `Bot ${process.env.BOT_TOKEN}`,
@ -26,4 +27,5 @@ process.on("uncaughtException", (e) => {
console.error(e);
});
openDb();
client.connect();