mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
9 lines
269 B
Go
9 lines
269 B
Go
package models
|
|
|
|
type EnvironmentV2 struct {
|
|
any `collection:"environments"`
|
|
BaseModelV2[EnvironmentV2] `bson:",inline"`
|
|
Key string `json:"key" bson:"key"`
|
|
Value string `json:"value" bson:"value"`
|
|
}
|