mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 19:31:06 +01:00
16 lines
282 B
Go
16 lines
282 B
Go
//go:build !linux && !ios
|
|
// +build !linux,!ios
|
|
|
|
package routemanager
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
// newFirewall returns a nil manager
|
|
func newFirewall(context.Context) (firewallManager, error) {
|
|
return nil, fmt.Errorf("firewall not supported on %s", runtime.GOOS)
|
|
}
|