Files
KIS-TOiR/server/test/mocks/jose.ts
2026-03-21 16:00:27 +03:00

9 lines
151 B
TypeScript

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