diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2026-05-14 18:42:45 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2026-05-14 18:42:45 -0400 |
| commit | a694f64b1708183736a1b1b826e8890d354f5c2f (patch) | |
| tree | 3f72bda415c448628c492a4a671aeb9ea3dc30bf /cover.go | |
| parent | 7ffc98c007601921db0677fc07c9779f71bb3499 (diff) | |
| download | lulu-a694f64b1708183736a1b1b826e8890d354f5c2f.zip | |
cli: test validate-cover and validate-interior-basic
Diffstat (limited to 'cover.go')
| -rw-r--r-- | cover.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -86,9 +86,9 @@ func (cd CoverDimensions) String() string { // CoverValidation contains the validation status of a cover file. type CoverValidation struct { - Id uint + Id uint `json:"id"` SrcUrl string `json:"source_url"` NPages uint `json:"page_count"` - Errors string + Errors []string `json:"errors"` Status CoverValidationStatus } |