mirror of
https://github.com/getcompanion-ai/computer-host.git
synced 2026-04-15 10:05:13 +00:00
15 lines
365 B
Go
15 lines
365 B
Go
package host
|
|
|
|
import "time"
|
|
|
|
type ArtifactRef struct {
|
|
ID ArtifactID `json:"id"`
|
|
Version ArtifactVersion `json:"version"`
|
|
}
|
|
|
|
type Volume struct {
|
|
ID VolumeID `json:"id"`
|
|
Kind VolumeKind `json:"kind"`
|
|
AttachedMachineID *MachineID `json:"attached_machine_id,omitempty"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
}
|