two/internal/qemu/start_other.go
GnomeZworc dbe7e9dd52
f-25: vms: add handle gestion
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
2026-04-26 16:33:17 +02:00

14 lines
239 B
Go

//go:build !linux
package qemu
import "errors"
type Config struct {
Name, VpcName, Mac, VolumePath string
TapID, Memory, CPUs int
}
func Start(cfg Config) error {
return errors.New("vm: not supported on this platform")
}