aboutsummaryrefslogtreecommitdiff
path: root/src/lib/utils/BushCache.ts
blob: 947b15d957499c0d862921a7b6427d0527756735 (plain)
1
2
3
4
5
6
7
8
9
import { Snowflake } from 'discord.js';

export class BushCache {
	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>();
}