mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 07:16:38 +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
|
|
}
|