mirror of
https://github.com/pterodactyl/wings.git
synced 2026-04-21 12:48:10 -05:00
13 lines
225 B
Go
13 lines
225 B
Go
package server
|
|
|
|
type PowerAction struct {
|
|
Action string `json:"action"`
|
|
}
|
|
|
|
func (pr *PowerAction) IsValid() bool {
|
|
return pr.Action == "start" ||
|
|
pr.Action == "stop" ||
|
|
pr.Action == "kill" ||
|
|
pr.Action == "restart"
|
|
}
|