diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-19 17:42:29 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-19 17:42:29 -0400 |
commit | 0fc87a141609fe7d6a80931b73f59c872b0bd44f (patch) | |
tree | 715d65c8801de4376845c01edfe01abedaabbc91 /src/lib/utils/BushCache.ts | |
parent | b023e057083f002418d2a685dbfb17faa624b6b1 (diff) | |
download | tanzanite-0fc87a141609fe7d6a80931b73f59c872b0bd44f.tar.gz tanzanite-0fc87a141609fe7d6a80931b73f59c872b0bd44f.tar.bz2 tanzanite-0fc87a141609fe7d6a80931b73f59c872b0bd44f.zip |
change some stuff
Diffstat (limited to 'src/lib/utils/BushCache.ts')
-rw-r--r-- | src/lib/utils/BushCache.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/utils/BushCache.ts b/src/lib/utils/BushCache.ts index ffef470..e4eaf55 100644 --- a/src/lib/utils/BushCache.ts +++ b/src/lib/utils/BushCache.ts @@ -1,4 +1,5 @@ -import { Snowflake } from 'discord.js'; +import { Collection, Snowflake } from 'discord.js'; +import { Guild } from '../models/Guild'; class GlobalCache { public static superUsers = new Array<Snowflake>(); @@ -8,6 +9,8 @@ class GlobalCache { public static blacklistedUsers = new Array<Snowflake>(); } + export class BushCache { public static global = GlobalCache; + public static guilds = new Collection<Snowflake, Guild>() } |