mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 19:13:08 +02:00
4 lines
157 B
TypeScript
4 lines
157 B
TypeScript
import { Cache } from "@/misc/cache.js";
|
|
import { User } from "@/models/entities/user.js";
|
|
|
|
export const userCache = new Cache<User | null>(1000 * 60 * 30);
|