diff --git a/cli/recipe.go b/cli/recipe.go index e54bd2f2..d65ea21d 100644 --- a/cli/recipe.go +++ b/cli/recipe.go @@ -15,7 +15,7 @@ import ( "github.com/urfave/cli/v2" ) -type AppImage struct { +type Image struct { Image string `json:"image"` Rating string `json:"rating"` Source string `json:"source"` @@ -23,12 +23,12 @@ type AppImage struct { } type Feature struct { - Backups string `json:"backups"` - Email string `json:"email"` - Healthcheck string `json:"healthcheck"` - Image AppImage `json:"image"` - Status int `json:"status"` - Tests string `json:"tests"` + Backups string `json:"backups"` + Email string `json:"email"` + Healthcheck string `json:"healthcheck"` + Image Image `json:"image"` + Status int `json:"status"` + Tests string `json:"tests"` } type Version struct {