mirror of
https://github.com/kubenetworks/kubevpn.git
synced 2025-12-24 11:51:13 +08:00
13 lines
296 B
Go
13 lines
296 B
Go
//go:build !windows
|
|
|
|
package util
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func DeleteBlockFirewallRule(ctx context.Context) {}
|
|
func DeleteAllowFirewallRule(ctx context.Context) {}
|
|
func FindAllowFirewallRule(ctx context.Context) bool { return false }
|
|
func AddAllowFirewallRule(ctx context.Context) {}
|