chore: review comments

This commit is contained in:
Stavros
2026-06-21 18:29:51 +03:00
parent e53cbf414d
commit c9337da4d4
5 changed files with 26 additions and 15 deletions
+5 -1
View File
@@ -316,7 +316,11 @@ func (app *BootstrapApp) Setup() error {
}
// get listener
listenerFunc := app.getListenerFunc()
listenerFunc, err := app.getListenerFunc()
if err != nil {
return fmt.Errorf("failed to get listener function: %w", err)
}
// run listener
lec := make(chan error, 1)