AdGuardHome/internal/ipset/ipset_others.go

12 lines
196 B
Go
Raw Normal View History

//go:build !linux
2023-10-11 15:31:41 +01:00
package ipset
import (
"github.com/AdguardTeam/AdGuardHome/internal/aghos"
)
2023-10-11 15:31:41 +01:00
func newManager(_ []string) (mgr Manager, err error) {
return nil, aghos.Unsupported("ipset")
}