diff options
| author | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-07-22 15:48:31 +0100 |
|---|---|---|
| committer | Alex Pooley (@zuedev) <zuedev@gmail.com> | 2026-07-22 15:48:31 +0100 |
| commit | c6c9ad5d948a38c05e6a7d75097ca8a54c5a33ae (patch) | |
| tree | c3aba3cd5c4f4708ca0bac39a2504a9309f67156 /174bg/discord-bot/source/commands/_index.js | |
| parent | 72487019b3f255cece40a8073bbad8bc9968a3b7 (diff) | |
| download | unnamed-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.js | 5 |
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]; |
