mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
refactor
This commit is contained in:
parent
f5d6d8c42a
commit
612510b2c0
1 changed files with 1 additions and 1 deletions
|
@ -6,5 +6,5 @@ import { Cache } from './cache';
|
||||||
const cache = new Cache<UserKeypair>(Infinity);
|
const cache = new Cache<UserKeypair>(Infinity);
|
||||||
|
|
||||||
export async function getUserKeypair(userId: User['id']): Promise<UserKeypair> {
|
export async function getUserKeypair(userId: User['id']): Promise<UserKeypair> {
|
||||||
return await cache.fetch(userId, async () => await UserKeypairs.findOneOrFail(userId));
|
return await cache.fetch(userId, () => UserKeypairs.findOneOrFail(userId));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue