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