diff options
author | jacob janzen <53062115+JacobJanzen@users.noreply.github.com> | 2024-12-11 20:28:09 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-11 20:28:09 -0600 |
commit | 36066ad3d8d92855bbfdf4273a53066c6092fa45 (patch) | |
tree | 7f432cebbfc4c186a2cbc6d5f841efc4ed8f4c9e /command_impls.js | |
parent | 78541dcecfc154493a6f1cedf33c0c8178331d96 (diff) |
add blep command (#4)
Diffstat (limited to 'command_impls.js')
-rw-r--r-- | command_impls.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/command_impls.js b/command_impls.js index 3079e83..d10b293 100644 --- a/command_impls.js +++ b/command_impls.js @@ -41,8 +41,14 @@ export function help(state) { state, `Hi, I'm sily-bot! Here are the available commands and their descriptions: +- \`/blep\` blep. +- \`/help\` Show this message. - \`/pet\` You can pet sily-bot. -- \`/schedule-message <message> <cron>\` Schedule a message to be send later. Works like Linux cron jobs in the format second minute hour day month weekday. Put the number (or name of month or weekday) in each spot. If you want it to run every second, minute, etc. instead of once when it reaches the provided number, use a * instead of a number. For instance, to run a job every minute on January 4th, you might use 0 * * 4 January *. The bot replies with a UUID that can be used to cancel the cron job later. +- \`/schedule-message <message> <cron>\` Schedule a message to be send later. Works like Linux cron jobs in the format second minute hour day month weekday. Put the number (or name of month or weekday) in each spot. If you want it to run every second, minute, etc. instead of once when it reaches the provided number, use a \`*\` instead of a number. For instance, to run a job every minute on January 4th, you might use \`0 * * 4 January *\`. The bot replies with a UUID that can be used to cancel the cron job later. - \`/unschedule-message <id>\` Stop sending a message with the given id.`, ); } + +export function blep(state) { + return send(state, `≽^•𐃷•^≼`); +} |