diff options
author | jacob janzen <53062115+JacobJanzen@users.noreply.github.com> | 2024-12-11 20:07:47 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-11 20:07:47 -0600 |
commit | 9c4e538aa0b41906b97b7ecc3317c23ba26b3246 (patch) | |
tree | 53b846cbc149ebd9f435b1f1547ed752b1770798 /app.js | |
parent | 7391eefb59ba4ea8d72c09a8dd577678c7e78aa8 (diff) |
Add help message
Diffstat (limited to 'app.js')
-rw-r--r-- | app.js | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -34,6 +34,10 @@ function handle_application_command(state, data, channel_id) { case "pet": return pet(state); + case "help": + return help(state); + + default: console.error(`unknown command: ${name}`); return res.status(400).json({ error: "unknown command" }); |