We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ff855e commit 745def3Copy full SHA for 745def3
1 file changed
application/App.go
@@ -61,7 +61,9 @@ func (a *Application) Start() {
61
a.depLists = append(a.depLists, []string{dependency.name})
62
}
63
a.init[dependency.name] = dependency.init
64
- a.start[dependency.name] = dependency.start
+ if dependency.start != nil {
65
+ a.start[dependency.name] = dependency.start
66
+ }
67
68
BuildInitSeq(a.depLists, &a.depSeq)
69
for _, name := range a.depSeq {
0 commit comments