fix: start the web server
Node.js CI / Lint and Test (push) Successful in 38s

This commit is contained in:
2025-10-04 19:05:37 -07:00
parent c7dd989a9e
commit b848009011
2 changed files with 5 additions and 13 deletions
+2
View File
@@ -17,6 +17,7 @@ import { editNote } from "./buttons/editNote.js";
import { bookmark } from "./interactions/bookmark.js";
import { deleteCmd } from "./interactions/deleteCmd.js";
import { note } from "./modals/note.js";
import { instantiateServer } from "./server/serve.js";
import { logger } from "./utils/logger.js";
const callista = new Client({
@@ -88,4 +89,5 @@ callista.on(Events.InteractionCreate, (interaction) => {
void handleInteraction(interaction);
});
instantiateServer();
await callista.login(process.env.BOT_TOKEN);