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