Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
191 Bytes
import { createZodDto } from "nestjs-zod/dto";
import { z } from "zod";
export const urlSchema = z.object({ url: z.string().url() });
export class UrlDto extends createZodDto(urlSchema) {}