mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
18 lines
355 B
Go
18 lines
355 B
Go
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
|
|
|
|
package machine
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"net"
|
|
)
|
|
|
|
func DialNamedPipe(_ context.Context, _ string) (net.Conn, error) {
|
|
return nil, errors.New("not implemented")
|
|
}
|
|
|
|
func GetEnvSetString(env string, val string) string {
|
|
return fmt.Sprintf("export %s='%s'", env, val)
|
|
}
|