Fix imports

This commit is contained in:
jacob janzen 2024-12-11 20:09:55 -06:00 committed by GitHub
parent 9c4e538aa0
commit 78541dcecf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

8
app.js
View file

@ -6,7 +6,12 @@ import {
verifyKeyMiddleware, verifyKeyMiddleware,
} from "discord-interactions"; } from "discord-interactions";
import { Client, GatewayIntentBits, ActivityType } from "discord.js"; import { Client, GatewayIntentBits, ActivityType } from "discord.js";
import { pet, schedule_message, unschedule_message } from "./command_impls.js"; import {
help,
pet,
schedule_message,
unschedule_message,
} from "./command_impls.js";
import { MessageSchedule } from "./message-scheduler.js"; import { MessageSchedule } from "./message-scheduler.js";
class State { class State {
@ -37,7 +42,6 @@ function handle_application_command(state, data, channel_id) {
case "help": case "help":
return help(state); return help(state);
default: default:
console.error(`unknown command: ${name}`); console.error(`unknown command: ${name}`);
return res.status(400).json({ error: "unknown command" }); return res.status(400).json({ error: "unknown command" });