refactor: remove unused import

This commit is contained in:
Namekuji 2023-08-07 08:45:00 -04:00
parent df4cf7822e
commit 9ff89d95cd
No known key found for this signature in database
GPG key ID: 1D62332C07FBA532

View file

@ -4,7 +4,7 @@ import type {
ILocalUser,
} from "@/models/entities/user.js";
import { Users } from "@/models/index.js";
import { Cache, HashCache } from "@/misc/cache.js";
import { Cache } from "@/misc/cache.js";
import { redisClient, subscriber } from "@/db/redis.js";
export const userByIdCache = new Cache<CacheableUser>("userById", 60 * 30);