2024-04-20 23:06:09 +08:00

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"`
}