mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
13 lines
558 B
Go
13 lines
558 B
Go
package models
|
|
|
|
type DependencySetting struct {
|
|
any `collection:"dependency_settings"`
|
|
BaseModel[DependencySetting] `bson:",inline"`
|
|
Key string `json:"key" bson:"key"`
|
|
Name string `json:"name" bson:"name"`
|
|
Description string `json:"description" bson:"description"`
|
|
Enabled bool `json:"enabled" bson:"enabled"`
|
|
Cmd string `json:"cmd" bson:"cmd"`
|
|
Proxy string `json:"proxy" bson:"proxy"`
|
|
}
|