Merge pull request #44 from safing/feature/pre-alpha-finalizing

Pre alpha finalizing
This commit is contained in:
Patrick Pacher
2020-04-30 16:42:09 +02:00
committed by GitHub
33 changed files with 427 additions and 166 deletions

View File

@@ -33,7 +33,7 @@ var (
func init() {
ignoreNetEnvEvents.Set()
module = modules.Register("filterlists", prep, start, nil, "core", "netenv")
module = modules.Register("filterlists", prep, start, stop, "core")
}
func prep() error {
@@ -98,3 +98,8 @@ func start() error {
return nil
}
func stop() error {
filterListsLoaded = make(chan struct{})
return nil
}