aboutsummaryrefslogtreecommitdiff
path: root/174bg/discord-bot/source/commands/_index.js
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-22 15:48:31 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-07-22 15:48:31 +0100
commitc6c9ad5d948a38c05e6a7d75097ca8a54c5a33ae (patch)
treec3aba3cd5c4f4708ca0bac39a2504a9309f67156 /174bg/discord-bot/source/commands/_index.js
parent72487019b3f255cece40a8073bbad8bc9968a3b7 (diff)
downloadunnamed-group-c6c9ad5d948a38c05e6a7d75097ca8a54c5a33ae.tar
unnamed-group-c6c9ad5d948a38c05e6a7d75097ca8a54c5a33ae.tar.gz
unnamed-group-c6c9ad5d948a38c05e6a7d75097ca8a54c5a33ae.tar.bz2
unnamed-group-c6c9ad5d948a38c05e6a7d75097ca8a54c5a33ae.tar.xz
unnamed-group-c6c9ad5d948a38c05e6a7d75097ca8a54c5a33ae.zip
implement caching for uex
Diffstat (limited to '174bg/discord-bot/source/commands/_index.js')
-rw-r--r--174bg/discord-bot/source/commands/_index.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/174bg/discord-bot/source/commands/_index.js b/174bg/discord-bot/source/commands/_index.js
index 5fea200..25154e4 100644
--- a/174bg/discord-bot/source/commands/_index.js
+++ b/174bg/discord-bot/source/commands/_index.js
@@ -2,7 +2,8 @@ import requisition from "./requisition.js";
import closeTicket from "./close-ticket.js";
import oncallCheck from "./oncall-check.js";
import uex from "./uex.js";
+import clearCache from "./clear-cache.js";
-export { requisition, closeTicket, oncallCheck, uex };
+export { requisition, closeTicket, oncallCheck, uex, clearCache };
-export default [requisition, closeTicket, oncallCheck, uex];
+export default [requisition, closeTicket, oncallCheck, uex, clearCache];