aboutsummaryrefslogtreecommitdiff
path: root/src/tasks/cache/updateNeuItemCache.ts
blob: 5c88377e82acbe4cc5377d4aeb995708ec8fd0d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { BotTask, Time } from '#lib';

export default class UpdateNeuItemCache extends BotTask {
	public constructor() {
		super('updateNeuItemCache', {
			delay: 1 * Time.Hour,
			runOnStart: true
		});
	}

	public async exec() {}
}