Fix imports
This commit is contained in:
parent
9c4e538aa0
commit
78541dcecf
1 changed files with 6 additions and 2 deletions
8
app.js
8
app.js
|
@ -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" });
|
||||||
|
|
Loading…
Add table
Reference in a new issue