types.go 168 B

12345678910
  1. package resource
  2. type Source struct {
  3. Repository string `json:"repository"`
  4. Tag string `json:"tag"`
  5. }
  6. type Version struct {
  7. Digest string `json:"digest"`
  8. }