mirror of
https://github.com/safing/portbase
synced 2025-09-01 10:09:50 +00:00
Remove virtual base dependency
This commit is contained in:
parent
2cd0412e18
commit
3bdca53c14
3 changed files with 3 additions and 3 deletions
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -23,7 +23,7 @@ var (
|
|||
)
|
||||
|
||||
func init() {
|
||||
modules.Register("random", prep, Start, nil, "base")
|
||||
modules.Register("random", prep, Start, nil)
|
||||
}
|
||||
|
||||
func prep() error {
|
||||
|
|
Loading…
Add table
Reference in a new issue