diff options
Diffstat (limited to 'app.js')
-rw-r--r-- | app.js | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -37,6 +37,9 @@ function handle_application_command(state, data, channel_id) { case "blep": return blep(state); + case "catfact": + return catfact(state); + default: console.error(`unknown command: ${name}`); return res.status(400).json({ error: "unknown command" }); |