Files
podman/pkg/machine/machine_unix.go
Matt Souza 090304a054 lint: reenable revive unused-parameter check
Signed-off-by: Matt Souza <medsouz99@gmail.com>
2025-10-01 10:42:08 -04:00

19 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)
}