glider/netset/manager_other.go
nadoo 43552b60c9
Some checks failed
Build / Build (push) Has been cancelled
netset: add nftables set support
2026-07-15 23:41:21 +08:00

14 lines
230 B
Go

//go:build !linux
package netset
import (
"fmt"
libnetset "github.com/nadoo/netset"
)
func newBackend() (backend, error) {
return nil, fmt.Errorf("netset manager is supported only on linux: %w", libnetset.ErrUnsupported)
}