mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-14 04:39:33 +00:00
The podman module paths are moving from github.com/containers/podman to go.podman.io/podman. This will help with future mobility. Signed-off-by: Brent Baude <bbaude@redhat.com>
11 lines
256 B
Go
11 lines
256 B
Go
package vmconfigs
|
|
|
|
import (
|
|
"go.podman.io/podman/v6/pkg/machine/define"
|
|
"go.podman.io/podman/v6/pkg/machine/env"
|
|
)
|
|
|
|
func getPipe(name string) *define.VMFile {
|
|
pipeName := env.WithPodmanPrefix(name)
|
|
return &define.VMFile{Path: `\\.\pipe\` + pipeName}
|
|
}
|