incus-mirror/internal/instance/action.go
Stéphane Graber 58b3bbae53
internal/instance: New package from shared/instance.go
Signed-off-by: Stéphane Graber <stgraber@stgraber.org>
2023-09-26 15:58:59 -04:00

14 lines
325 B
Go

package instance
// InstanceAction indicates the type of action being performed.
type InstanceAction string
// InstanceAction types.
const (
Stop InstanceAction = "stop"
Start InstanceAction = "start"
Restart InstanceAction = "restart"
Freeze InstanceAction = "freeze"
Unfreeze InstanceAction = "unfreeze"
)