mirror of
https://github.com/getcompanion-ai/computer-host.git
synced 2026-04-15 15:03:32 +00:00
21 lines
396 B
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"
|
|
)
|