Files
crawlab/core/models/models/setting.go
2024-11-05 11:15:27 +08:00

13 lines
275 B
Go

package models
import (
"go.mongodb.org/mongo-driver/bson"
)
type Setting struct {
any `collection:"settings"`
BaseModel[Setting] `bson:",inline"`
Key string `json:"key" bson:"key"`
Value bson.M `json:"value" bson:"value"`
}