blob: a9c961f9d8a35f83bedfe47d253dc6126de8606c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package entities
type ManifestCreateOptions struct {
All bool `schema:"all"`
}
type ManifestAddOptions struct {
All bool `json:"all" schema:"all"`
Annotation []string `json:"annotation" schema:"annotation"`
Arch string `json:"arch" schema:"arch"`
Features []string `json:"features" schema:"features"`
Images []string `json:"images" schema:"images"`
OSVersion string `json:"os_version" schema:"os_version"`
Variant string `json:"variant" schema:"variant"`
}
|