Refactor handlers.NewApp

This commit is contained in:
2025-10-16 23:50:29 +02:00
parent fd24695764
commit ab0b102a81
2 changed files with 3 additions and 3 deletions

View File

@@ -53,7 +53,7 @@ func main() {
defer db.Close()
// Create App
app := handlers.NewApp(db, handlers.NewBroker(), make(chan struct{}, 1))
app := handlers.NewApp(db, handlers.NewBroker())
// Create server
srv := NewServer(app, "0.0.0.0:7153", []string{"*"})