two/internal/qemu/start_other.go
GnomeZworc da0d043846
f-25: qemu: add handle gestion
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
2026-04-26 18:23:27 +02:00

14 lines
221 B
Go

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