two/internal/qemu/start_other.go
GnomeZworc a0637d827a
f-32: syntax: fix duplicated code
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
2026-05-24 16:13:11 +02:00

11 lines
143 B
Go

//go:build !linux
package qemu
import (
"errors"
)
func Start(_ Config) error {
return errors.New("vm: not supported on this platform")
}