Update dependencies in go.mod and go.sum; refactor gRPC server initialization in main.go

This commit is contained in:
Phillip Michelsen
2025-08-04 19:43:46 +07:00
parent 5be0d4db06
commit f4333fc30a
6 changed files with 15 additions and 11 deletions

View File

@@ -34,7 +34,7 @@ func (r *Router) Run() {
select {
case ch <- msg:
default:
fmt.Println("Dropped message, buffer full!!!")
fmt.Println("Dropped message, buffer full!!!") // TODO: Handle full buffer case more gracefully
}
}
r.mu.RUnlock()