const PdfApis = HttpApiGroup.make('PdfApis').add(
HttpApiEndpoint.post('upload')`/`
.setPayload(
HttpApiSchema.Multipart(
Schema.Struct({ file: Multipart.SingleFileSchema }),
{ maxFieldSize: 100 * 1024 * 1024 * 1024 }
)
)
.addSuccess(Schema.String)
);
const PdfApis = HttpApiGroup.make('PdfApis').add(
HttpApiEndpoint.post('upload')`/`
.setPayload(
HttpApiSchema.Multipart(
Schema.Struct({ file: Multipart.SingleFileSchema }),
{ maxFieldSize: 100 * 1024 * 1024 * 1024 }
)
)
.addSuccess(Schema.String)
);