Files
discordeno/utils/cache.ts
2020-02-25 22:56:15 -05:00

9 lines
237 B
TypeScript

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