Files
netbird/client/internal/daemonaddr/resolve_pipe_other.go

10 lines
205 B
Go

//go:build !windows
package daemonaddr
// ResolveDaemonAddr is a no-op off Windows, where there is no named-pipe
// default to fall back from.
func ResolveDaemonAddr(addr string) string {
return addr
}