mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00:00
15 lines
272 B
Go
15 lines
272 B
Go
//go:build !linux
|
|
|
|
package internal
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
|
|
"github.com/netbirdio/netbird/client/firewall"
|
|
)
|
|
|
|
func buildFirewallManager(wgIfaceName string) (fw firewall.Manager, err error) {
|
|
return nil, fmt.Errorf("not implemented for this OS: %s", runtime.GOOS)
|
|
}
|