types.go 284 B

1234567891011121314151617
  1. package resource
  2. type Source struct {
  3. Repository string `json:"repository"`
  4. Tag string `json:"tag"`
  5. Debug bool `json:"debug"`
  6. }
  7. type Version struct {
  8. Digest string `json:"digest"`
  9. }
  10. type MetadataField struct {
  11. Name string `json:"name"`
  12. Value string `json:"value"`
  13. }