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