Files
KIS-TOiR/server/test/mocks/jose.ts
2026-03-25 21:01:31 +03:00

9 lines
151 B
TypeScript

export const createRemoteJWKSet = () => {
return async () => ({}) as never;
};
export const jwtVerify = async () => {
return { payload: {} };
};