mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-20 00:39:17 +08:00
35 lines
883 B
Go
35 lines
883 B
Go
|
package request
|
||
|
|
||
|
type HostToolReq struct {
|
||
|
Type string `json:"type" validate:"required,oneof=supervisord"`
|
||
|
Operate string `json:"operate" validate:"oneof=status restart start stop"`
|
||
|
}
|
||
|
|
||
|
type HostToolCreate struct {
|
||
|
Type string `json:"type" validate:"required"`
|
||
|
SupervisorConfig
|
||
|
}
|
||
|
|
||
|
type SupervisorConfig struct {
|
||
|
ConfigPath string `json:"configPath"`
|
||
|
}
|
||
|
|
||
|
type HostToolLogReq struct {
|
||
|
Type string `json:"type" validate:"required,oneof=supervisord"`
|
||
|
}
|
||
|
|
||
|
type HostToolConfig struct {
|
||
|
Type string `json:"type" validate:"required,oneof=supervisord"`
|
||
|
Operate string `json:"operate" validate:"oneof=get set"`
|
||
|
Content string `json:"content"`
|
||
|
}
|
||
|
|
||
|
type SupervisorProcessConfig struct {
|
||
|
Name string `json:"name"`
|
||
|
Operate string `json:"operate"`
|
||
|
Command string `json:"command"`
|
||
|
User string `json:"user"`
|
||
|
Dir string `json:"dir"`
|
||
|
Numprocs string `json:"numprocs"`
|
||
|
}
|