mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-27 17:50:53 +01:00
13 lines
293 B
Go
13 lines
293 B
Go
package models
|
|
|
|
import (
|
|
"go.mongodb.org/mongo-driver/bson"
|
|
)
|
|
|
|
type SettingV2 struct {
|
|
any `collection:"settings"`
|
|
BaseModelV2[SettingV2] `bson:",inline"`
|
|
Key string `json:"key" bson:"key"`
|
|
Value bson.M `json:"value" bson:"value"`
|
|
}
|