Remove virtual base dependency

This commit is contained in:
Daniel 2020-03-20 17:22:00 +01:00
parent 2cd0412e18
commit 3bdca53c14
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ var (
)
func init() {
module = modules.Register("api", prep, start, stop, "base", "database", "config")
module = modules.Register("api", prep, start, stop, "database", "config")
}
func prep() error {

View file

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

View file

@ -23,7 +23,7 @@ var (
)
func init() {
modules.Register("random", prep, Start, nil, "base")
modules.Register("random", prep, Start, nil)
}
func prep() error {