mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 09:20:08 +00:00
10 lines
270 B
TypeScript
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>(),
|
|
}
|