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