blob: 5ba649a486c5c2ca3caec6f123c15a5fbc8086cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//go:build (amd64 && !windows) || (arm64 && !windows)
// +build amd64,!windows arm64,!windows
package machine
import (
"github.com/containers/podman/v4/pkg/machine"
"github.com/containers/podman/v4/pkg/machine/qemu"
)
func GetSystemDefaultProvider() machine.Provider {
return qemu.GetQemuProvider()
}
|