1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-21 01:09:17 +08:00
1Panel/agent/app/model/setting.go

17 lines
355 B
Go
Raw Normal View History

2024-07-23 14:48:37 +08:00
package model
type Setting struct {
BaseModel
2024-08-14 10:43:32 +08:00
Key string `json:"key" gorm:"not null;"`
Value string `json:"value"`
About string `json:"about"`
2024-07-23 14:48:37 +08:00
}
type NodeInfo struct {
Scope string `json:"scope"`
BaseDir string `json:"baseDir"`
Version string `json:"version"`
ServerCrt string `json:"serverCrt"`
ServerKey string `json:"serverKey"`
}