mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 04:59:06 +01:00
523ee14a73
* wip * wip * wip * Update following.ts * wip * wip * wip * Update resolve-user.ts * maxQueryExecutionTime * wip * wip
11 lines
425 B
TypeScript
11 lines
425 B
TypeScript
import { UserKeypairs } from '@/models/index.js';
|
|
import { User } from '@/models/entities/user.js';
|
|
import { UserKeypair } from '@/models/entities/user-keypair.js';
|
|
import { Cache } from './cache.js';
|
|
|
|
const cache = new Cache<UserKeypair>(Infinity);
|
|
|
|
export async function getUserKeypair(userId: User['id']): Promise<UserKeypair> {
|
|
return await cache.fetch(userId, () => UserKeypairs.findOneByOrFail({ userId: userId }));
|
|
}
|