mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-14 11:37:29 +08:00
16 lines
421 B
Go
16 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"`
|
||
|
}
|