Files
crawlab/core/models/models/environment_v2.go
2024-06-14 15:42:50 +08:00

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