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

@@ -9,7 +9,7 @@ import (
"github.com/safing/portmaster/intel"
// module dependencies
_ "github.com/safing/portmaster/core"
_ "github.com/safing/portmaster/core/base"
)
var (
@@ -17,7 +17,7 @@ var (
)
func init() {
module = modules.Register("resolver", prep, start, nil, "core", "netenv")
module = modules.Register("resolver", prep, start, nil, "base", "netenv")
}
func prep() error {