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

export class BushCache {
	public static global = {
		superUsers: new Array<Snowflake>(),
		disabledCommands: new Array<string>(),
		blacklistedChannels: new Array<Snowflake>(),
		blacklistedGuilds: new Array<Snowflake>(),
		blacklistedUsers: new Array<Snowflake>()
	};
	public static guilds = new Collection<Snowflake, Guild>();
}