9 lines
213 B
Go
9 lines
213 B
Go
package model
|
|
|
|
type Tag struct {
|
|
Name string `json:"name"`
|
|
Tags []string `json:"tags"`
|
|
RepoTags []*PackageManifest `json:"repo_tags"`
|
|
Total int `json:"total"`
|
|
}
|