package model type Repo struct { Name string CreatedAt int64 UpdatedAt int64 } type Catalog struct { Repositories []string `json:"repositories"` Repos []*PackageManifest `json:"repos"` Total int `json:"total"` }