mirror of
https://github.com/getcompanion-ai/computer-host.git
synced 2026-04-15 03:00:42 +00:00
27 lines
544 B
Go
27 lines
544 B
Go
package host
|
|
|
|
type ArtifactID string
|
|
|
|
type ArtifactVersion string
|
|
|
|
type MachineID string
|
|
|
|
type MachinePhase string
|
|
|
|
type VolumeID string
|
|
|
|
type VolumeKind string
|
|
|
|
const (
|
|
MachinePhasePending MachinePhase = "pending"
|
|
MachinePhaseRunning MachinePhase = "running"
|
|
MachinePhaseStopping MachinePhase = "stopping"
|
|
MachinePhaseStopped MachinePhase = "stopped"
|
|
MachinePhaseFailed MachinePhase = "failed"
|
|
MachinePhaseDeleting MachinePhase = "deleting"
|
|
)
|
|
|
|
const (
|
|
VolumeKindSystem VolumeKind = "system"
|
|
VolumeKindUser VolumeKind = "user"
|
|
)
|