mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-12-14 10:54:28 +00: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);
|