Fix tests: split core package into core and base

This commit is contained in:
Daniel
2020-05-02 13:24:31 +02:00
parent 3ce67133e4
commit f4b8ad7d7c
10 changed files with 51 additions and 38 deletions

View File

@@ -6,7 +6,8 @@ import (
"github.com/safing/portbase/modules"
// module dependencies
_ "github.com/safing/portmaster/core"
_ "github.com/safing/portmaster/core/base"
_ "github.com/safing/portmaster/updates" // dependency of semi-dependency filterlists
)
var (
@@ -14,7 +15,7 @@ var (
)
func init() {
module = modules.Register("profiles", prep, start, nil, "base")
module = modules.Register("profiles", prep, start, nil, "base", "updates")
}
func prep() error {