Files
podman/pkg/machine/machine_unix.go
Paul Holzinger f3c82a917c pkg/machine: remove deadcode
Yes this is a lot.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2025-06-26 19:37:15 +02:00

19 lines
360 B
Go

//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd
package machine
import (
"context"
"errors"
"fmt"
"net"
)
func DialNamedPipe(ctx context.Context, path 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)
}