repo.me/internal/model/catalog.go
2024-04-20 23:06:09 +08:00

13 lines
263 B
Go

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