mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 08:16:39 +00:00
9 lines
175 B
Go
9 lines
175 B
Go
//go:build !windows
|
|
|
|
package auth
|
|
|
|
// getSystemExcludedPortRanges returns nil on non-Windows platforms.
|
|
func getSystemExcludedPortRanges() []excludedPortRange {
|
|
return nil
|
|
}
|