mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
9 lines
168 B
Go
9 lines
168 B
Go
package firewall
|
|
|
|
import "fmt"
|
|
|
|
// ConfigureIptablesChains is a stub for Darwin.
|
|
func ConfigureIptablesChains() error {
|
|
return fmt.Errorf("not supported on Darwin")
|
|
}
|