diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-20 16:35:27 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-20 16:35:27 -0400 |
commit | b795a6e51b9ff69ed958f985908f81aff73022dc (patch) | |
tree | 37b51353f6be564586fb0b4aae8692429497608d /src/lib/utils/BushCache.ts | |
parent | b228c3b222f37ceaa888f926811e6cfadf33e24a (diff) | |
download | tanzanite-b795a6e51b9ff69ed958f985908f81aff73022dc.tar.gz tanzanite-b795a6e51b9ff69ed958f985908f81aff73022dc.tar.bz2 tanzanite-b795a6e51b9ff69ed958f985908f81aff73022dc.zip |
fixed caching
Diffstat (limited to 'src/lib/utils/BushCache.ts')
-rw-r--r-- | src/lib/utils/BushCache.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/utils/BushCache.ts b/src/lib/utils/BushCache.ts index e4eaf55..95c2346 100644 --- a/src/lib/utils/BushCache.ts +++ b/src/lib/utils/BushCache.ts @@ -12,5 +12,6 @@ class GlobalCache { export class BushCache { public static global = GlobalCache; + // eslint-disable-next-line @typescript-eslint/ban-types public static guilds = new Collection<Snowflake, Guild>() } |