9 lines
151 B
TypeScript
9 lines
151 B
TypeScript
export const createRemoteJWKSet = () => {
|
|
return async () => ({}) as never;
|
|
};
|
|
|
|
export const jwtVerify = async () => {
|
|
return { payload: {} };
|
|
};
|
|
|