Reintroduce base module

This commit is contained in:
Daniel 2020-04-02 17:11:08 +02:00
parent ddb04a8548
commit 7ab46a8d1e
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@ func init() {
modules.EnableModuleManagement(handleModuleChanges)
// register module and enable it for starting
module = modules.Register("subsystems", prep, start, nil, "config", "database")
module = modules.Register("subsystems", prep, start, nil, "config", "database", "base")
module.Enable()
// register event for changes in the subsystem

View file

@ -11,7 +11,7 @@ var (
)
func init() {
module = modules.Register("notifications", nil, start, nil, "database")
module = modules.Register("notifications", nil, start, nil, "database", "base")
}
func start() error {