mirror of
https://github.com/datarhei/core.git
synced 2025-09-27 04:16:25 +08:00
7 lines
228 B
Go
7 lines
228 B
Go
package api
|
|
|
|
// Command is a command to send to a process
|
|
type Command struct {
|
|
Command string `json:"command" validate:"required" enums:"start,stop,restart,reload" jsonschema:"enum=start,enum=stop,enum=restart,enum=reload"`
|
|
}
|