mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
14 lines
269 B
Go
14 lines
269 B
Go
package intel
|
|
|
|
import (
|
|
"github.com/safing/portbase/modules"
|
|
)
|
|
|
|
var (
|
|
// Module of this package. Export needed for testing of the endpoints package.
|
|
Module *modules.Module
|
|
)
|
|
|
|
func init() {
|
|
Module = modules.Register("intel", nil, nil, nil, "geoip", "filterlists")
|
|
}
|