mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
- Updated Go version in go.work and backend/go.mod to 1.23.7 - Updated various dependencies in go.sum and backend/go.sum - Refactored models to remove generic type parameters from BaseModel - Introduced new utility functions for consistent API responses - Removed unused utility files from controllers
9 lines
199 B
Go
9 lines
199 B
Go
package models
|
|
|
|
type Environment struct {
|
|
any `collection:"environments"`
|
|
BaseModel `bson:",inline"`
|
|
Key string `json:"key" bson:"key"`
|
|
Value string `json:"value" bson:"value"`
|
|
}
|