Files
discordeno/utils/cache.ts
2020-02-19 12:11:35 -05:00

10 lines
270 B
TypeScript

import { User } from "../structures/user";
import { Channel } from "../structures/channel";
import { Guild } from "../structures/guild";
export const cache = {
guilds: new Map<string, Guild>(),
users: new Map<string, User>(),
channels: new Map<string, Channel>(),
}