diff options
author | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-12-30 20:58:25 -0600 |
---|---|---|
committer | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-12-30 20:58:25 -0600 |
commit | f97d1e32bf80f4d9ce2339f526a1e7722387dacc (patch) | |
tree | e82cdf279b4114f7052bbabdf4c1a9e5ea83bc5c /app.js | |
parent | 04b0fa8855b62fac8677300c8ced95852358e44b (diff) |
try https for request
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" }); |