mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 02:48:28 -07:00
12 lines
203 B
Go
12 lines
203 B
Go
|
//go:build !linux
|
||
|
|
||
|
package aghnet
|
||
|
|
||
|
import (
|
||
|
"github.com/AdguardTeam/AdGuardHome/internal/aghos"
|
||
|
)
|
||
|
|
||
|
func newIpsetMgr(_ []string) (mgr IpsetManager, err error) {
|
||
|
return nil, aghos.Unsupported("ipset")
|
||
|
}
|