fix(blogo): missing return statement

This commit is contained in:
Guz
2025-01-23 15:58:46 -03:00
parent 71cdd43643
commit 2834bdbe70

View File

@@ -131,6 +131,7 @@ func (b *blogo) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if b.server != nil {
b.server.ServeHTTP(w, r)
return
}
log := b.log.With()