diff --git a/internal/qemu/start_linux.go b/internal/vm/start_linux.go similarity index 98% rename from internal/qemu/start_linux.go rename to internal/vm/start_linux.go index cc9c283..9f59261 100644 --- a/internal/qemu/start_linux.go +++ b/internal/vm/start_linux.go @@ -1,6 +1,6 @@ //go:build linux -package qemu +package vm import ( "fmt" diff --git a/internal/qemu/start_other.go b/internal/vm/start_other.go similarity index 94% rename from internal/qemu/start_other.go rename to internal/vm/start_other.go index 9fa57a1..9fb56fc 100644 --- a/internal/qemu/start_other.go +++ b/internal/vm/start_other.go @@ -1,6 +1,6 @@ //go:build !linux -package qemu +package vm import "errors"