aboutsummaryrefslogtreecommitdiff
path: root/src/tasks/updateHighlightCache.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/tasks/updateHighlightCache.ts')
-rw-r--r--src/tasks/updateHighlightCache.ts15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/tasks/updateHighlightCache.ts b/src/tasks/updateHighlightCache.ts
deleted file mode 100644
index 4677ea7..0000000
--- a/src/tasks/updateHighlightCache.ts
+++ /dev/null
@@ -1,15 +0,0 @@
-import { Time } from '#constants';
-import { BushTask } from '../lib/extensions/discord-akairo/BushTask.js';
-
-export default class UpdateHighlightCacheTask extends BushTask {
- public constructor() {
- super('updateHighlightCache', {
- delay: 5 * Time.Minute,
- runOnStart: false
- });
- }
-
- public async exec() {
- return this.client.highlightManager.syncCache();
- }
-}