From 36066ad3d8d92855bbfdf4273a53066c6092fa45 Mon Sep 17 00:00:00 2001 From: jacob janzen <53062115+JacobJanzen@users.noreply.github.com> Date: Wed, 11 Dec 2024 20:28:09 -0600 Subject: add blep command (#4) --- app.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'app.js') diff --git a/app.js b/app.js index aee587c..f445a8f 100644 --- a/app.js +++ b/app.js @@ -7,6 +7,7 @@ import { } from "discord-interactions"; import { Client, GatewayIntentBits, ActivityType } from "discord.js"; import { + blep, help, pet, schedule_message, @@ -42,6 +43,9 @@ function handle_application_command(state, data, channel_id) { case "help": return help(state); + case "blep": + return blep(state); + default: console.error(`unknown command: ${name}`); return res.status(400).json({ error: "unknown command" }); -- cgit v1.2.3