mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
11 lines
434 B
Go
11 lines
434 B
Go
package models
|
|
|
|
type DependencyRepo struct {
|
|
any `collection:"dependency_repos"`
|
|
BaseModel[DependencyRepo] `bson:",inline"`
|
|
Name string `json:"name" bson:"name"`
|
|
Type string `json:"type" bson:"type"`
|
|
LatestVersion string `json:"latest_version" bson:"latest_version"`
|
|
AllVersions []string `json:"all_versions" bson:"all_versions"`
|
|
}
|