mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-02 00:40:07 +00:00
10 lines
260 B
TypeScript
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>(),
|
|
}
|