aboutsummaryrefslogtreecommitdiffstats
path: root/cover.go
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2026-05-14 18:42:45 -0400
committerSam Anthony <sam@samanthony.xyz>2026-05-14 18:42:45 -0400
commita694f64b1708183736a1b1b826e8890d354f5c2f (patch)
tree3f72bda415c448628c492a4a671aeb9ea3dc30bf /cover.go
parent7ffc98c007601921db0677fc07c9779f71bb3499 (diff)
downloadlulu-a694f64b1708183736a1b1b826e8890d354f5c2f.zip
cli: test validate-cover and validate-interior-basic
Diffstat (limited to 'cover.go')
-rw-r--r--cover.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cover.go b/cover.go
index e5ad857..8897a09 100644
--- a/cover.go
+++ b/cover.go
@@ -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
}