f-25: qemu: add handle gestion

Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
This commit is contained in:
GnomeZworc 2026-04-26 16:29:45 +02:00
commit da0d043846
Signed by: nicolas.boufideline
GPG key ID: 4406BBBF8845D632
2 changed files with 62 additions and 0 deletions

View file

@ -0,0 +1,14 @@
//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")
}