blob: ffef47071bc95d2586b9fc12d752835559353c43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { Snowflake } from 'discord.js';
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;
}
|