mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-31 07:50:07 +00:00
9 lines
237 B
TypeScript
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>(),
|
|
}
|