mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
14 lines
626 B
Go
14 lines
626 B
Go
package models
|
|
|
|
type DependencyConfig struct {
|
|
any `collection:"dependency_configs"`
|
|
BaseModel[DependencyConfig] `bson:",inline"`
|
|
Key string `json:"key" bson:"key"`
|
|
Name string `json:"name" bson:"name"`
|
|
ExecCmd string `json:"exec_cmd" bson:"exec_cmd"`
|
|
PkgCmd string `json:"pkg_cmd" bson:"pkg_cmd"`
|
|
Proxy string `json:"proxy" bson:"proxy"`
|
|
Setup bool `json:"setup" bson:"-"`
|
|
DefaultVersion string `json:"default_version" bson:"default_version"`
|
|
}
|