diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-05-14 18:26:01 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-05-14 18:26:01 -0400 |
| commit | 7ffc98c007601921db0677fc07c9779f71bb3499 (patch) | |
| tree | 84ef660183e9f89cad6ff3ac5f14a338aac86403 /interior.go | |
| parent | 28a5aa8c8e7a61dbf06a2cd72ea1bfdee8e67ba6 (diff) | |
| download | lulu-7ffc98c007601921db0677fc07c9779f71bb3499.zip | |
cli: test validate-interior
Diffstat (limited to 'interior.go')
| -rw-r--r-- | interior.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interior.go b/interior.go index 98ff4d2..e9d183b 100644 --- a/interior.go +++ b/interior.go @@ -36,10 +36,10 @@ type validateInteriorBasicReq struct { // InteriorValidation contains the validation status of an interior file. type InteriorValidation struct { - Id uint + Id uint `json:"id"` SrcUrl string `json:"source_url"` NPages uint `json:"page_count"` - Errors string + Errors []string `json:"errors"` Status InteriorValidationStatus ValidPkgIds []PkgId `json:"valid_pod_package_ids"` } |