feat: Implement PDF recipe parser and quick import service for file and URL inputs
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
import { IsOptional, IsString, MaxLength } from 'class-validator';
|
||||
|
||||
export class QuickImportDto {
|
||||
@IsOptional()
|
||||
@IsString()
|
||||
@MaxLength(2048)
|
||||
input?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user