blob: a4a35e712cce97566f74f53cce4b28905ed7bd7d (
plain)
1
2
3
4
5
6
7
8
9
10
|
package machine
import (
"github.com/containers/podman/v3/pkg/machine"
"github.com/containers/podman/v3/pkg/machine/wsl"
)
func getSystemDefaultProvider() machine.Provider {
return wsl.GetWSLProvider()
}
|