aboutsummaryrefslogtreecommitdiff
path: root/src/lib/utils/BushCache.ts
blob: f9def5e5fea24b995523ee3f6fd64a19f1c9b7a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Collection, Snowflake } from 'discord.js';
import { Guild } from '../models/Guild';

class GlobalCache {
	public static superUsers = new Array<Snowflake>();
	public static disabledCommands = new Array<string>();
	public static blacklistedChannels = new Array<Snowflake>();
	public static blacklistedGuilds = new Array<Snowflake>();
	public static blacklistedUsers = new Array<Snowflake>();
}

export class BushCache {
	public static global = GlobalCache;
	public static guilds = new Collection<Snowflake, Guild>();
}