podman-build/pkg/machine/define/machine_artifact.go
2025-10-11 12:30:35 +09:00

21 lines
227 B
Go

package define
type Artifact int64
const (
Qemu Artifact = iota
HyperV
AppleHV
None
)
func (a Artifact) String() string {
switch a {
case HyperV:
return "hyperv"
case AppleHV:
return "applehv"
}
return "qemu"
}