Custom filter list proof of concept

This commit is contained in:
Vladimir Stoilov
2022-07-22 17:49:06 +02:00
committed by Daniel
parent a7034e423c
commit 420da81b33
3 changed files with 139 additions and 1 deletions

View File

@@ -2,11 +2,12 @@ package intel
import (
"github.com/safing/portbase/modules"
_ "github.com/safing/portmaster/intel/customlists"
)
// Module of this package. Export needed for testing of the endpoints package.
var Module *modules.Module
func init() {
Module = modules.Register("intel", nil, nil, nil, "geoip", "filterlists")
Module = modules.Register("intel", nil, nil, nil, "geoip", "filterlists", "customlists")
}