mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
13 lines
330 B
Go
13 lines
330 B
Go
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", "customlists")
|
|
}
|