computer-host/contract/types.go

21 lines
396 B
Go

package host
type MachineID string
type MachinePhase string
type VolumeID string
type VolumeKind string
const (
MachinePhaseStarting MachinePhase = "starting"
MachinePhaseRunning MachinePhase = "running"
MachinePhaseStopped MachinePhase = "stopped"
MachinePhaseFailed MachinePhase = "failed"
)
const (
VolumeKindSystem VolumeKind = "system"
VolumeKindUser VolumeKind = "user"
)