mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-12 02:21:55 +08:00
15 lines
421 B
Go
15 lines
421 B
Go
package dto
|
|
|
|
type DaemonJsonUpdateByFile struct {
|
|
Path string `json:"path" validate:"required"`
|
|
File string `json:"file"`
|
|
}
|
|
|
|
type DaemonJsonConf struct {
|
|
Status string `json:"status"`
|
|
Mirrors []string `json:"registryMirrors"`
|
|
Registries []string `json:"insecureRegistries"`
|
|
Bip string `json:"bip"`
|
|
LiveRestore bool `json:"liveRestore"`
|
|
CgroupDriver string `json:"cgroupDriver"`
|
|
}
|