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