two/internal/vm/start_other.go
GnomeZworc 142710e03e
f-25: vms: add handle gestion
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
2026-04-26 16:29:54 +02:00

14 lines
237 B
Go

//go:build !linux
package vm
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")
}