Files
discordeno/utils/cache.ts
2020-02-19 14:09:08 -05:00

10 lines
260 B
TypeScript

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