mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-03-24 15:37:53 +00:00
6 lines
100 B
TypeScript
6 lines
100 B
TypeScript
import { z } from "zod";
|
|
|
|
export const getOidcClientInfoScehma = z.object({
|
|
name: z.string(),
|
|
});
|