Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
235 Bytes
import { createZodDto } from "nestjs-zod/dto";
import { z } from "zod";
const authProvidersSchema = z.array(z.enum(["email", "github", "google", "openid"]));
export class AuthProvidersDto extends createZodDto(authProvidersSchema) {}