aboutsummaryrefslogtreecommitdiff
path: root/174bg/discord-bot/commands/_index.js
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-18 11:53:19 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-18 11:53:19 +0100
commit91900b943def6ae9e7dab58ee4453e3874a21841 (patch)
tree8abcdc7a51ba17d55a0e772afe72c06062111155 /174bg/discord-bot/commands/_index.js
parentefa927adf3850cb8f3f38cea9ed4dd01425ade59 (diff)
downloadunnamed-group-91900b943def6ae9e7dab58ee4453e3874a21841.tar
unnamed-group-91900b943def6ae9e7dab58ee4453e3874a21841.tar.gz
unnamed-group-91900b943def6ae9e7dab58ee4453e3874a21841.tar.bz2
unnamed-group-91900b943def6ae9e7dab58ee4453e3874a21841.tar.xz
unnamed-group-91900b943def6ae9e7dab58ee4453e3874a21841.zip
add oncall-check command
Diffstat (limited to '174bg/discord-bot/commands/_index.js')
-rw-r--r--174bg/discord-bot/commands/_index.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/174bg/discord-bot/commands/_index.js b/174bg/discord-bot/commands/_index.js
index d1a50c6..2421b4d 100644
--- a/174bg/discord-bot/commands/_index.js
+++ b/174bg/discord-bot/commands/_index.js
@@ -1,6 +1,7 @@
import requisition from "./requisition.js";
import closeTicket from "./close-ticket.js";
+import oncallCheck from "./oncall-check.js";
-export { requisition, closeTicket };
+export { requisition, closeTicket, oncallCheck };
-export default [requisition, closeTicket];
+export default [requisition, closeTicket, oncallCheck];