mirror of
https://github.com/safing/portmaster
synced 2025-04-16 17:09:09 +00:00
13 lines
338 B
Go
13 lines
338 B
Go
package intel
|
|
|
|
import (
|
|
"github.com/safing/portbase/modules"
|
|
_ "github.com/safing/portmaster/service/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")
|
|
}
|