fix: address gateway review findings

This commit is contained in:
Harivansh Rathi 2026-04-09 17:52:14 +00:00
parent 59d3290bb9
commit 500354cd9b
14 changed files with 441 additions and 66 deletions

View file

@ -27,19 +27,20 @@ type ArtifactRecord struct {
}
type MachineRecord struct {
ID contracthost.MachineID
Artifact contracthost.ArtifactRef
SystemVolumeID contracthost.VolumeID
UserVolumeIDs []contracthost.VolumeID
RuntimeHost string
TapDevice string
Ports []contracthost.MachinePort
Phase contracthost.MachinePhase
Error string
PID int
SocketPath string
CreatedAt time.Time
StartedAt *time.Time
ID contracthost.MachineID
Artifact contracthost.ArtifactRef
SystemVolumeID contracthost.VolumeID
UserVolumeIDs []contracthost.VolumeID
RuntimeHost string
TapDevice string
Ports []contracthost.MachinePort
GuestSSHPublicKey string
Phase contracthost.MachinePhase
Error string
PID int
SocketPath string
CreatedAt time.Time
StartedAt *time.Time
}
type VolumeRecord struct {