9 lines
213 B
Go
Raw Normal View History

2024-04-10 22:10:09 +08:00
package model
type Tag struct {
2024-04-15 18:02:54 +08:00
Name string `json:"name"`
Tags []string `json:"tags"`
RepoTags []*PackageManifest `json:"repo_tags"`
Total int `json:"total"`
2024-04-10 22:10:09 +08:00
}