mirror of
https://github.com/netbirdio/netbird.git
synced 2026-08-04 19:45:14 -04:00
10 lines
205 B
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
|
|
}
|