mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-31 16:00:07 +00:00
8 lines
173 B
TypeScript
8 lines
173 B
TypeScript
import { Guild } from "../types/guild";
|
|
|
|
export const cache = {
|
|
guilds: new Map<string, Guild>(),
|
|
users: new Map<string, User>(),
|
|
channels: new Map<string, Channel>(),
|
|
}
|