Dependency updates, logging middleware.

This commit is contained in:
jdl
2026-06-14 20:31:49 +02:00
parent 0e3d4ec3a5
commit f765303daf
2 changed files with 48 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ func (app *App) handlePub(pattern string, fn handlerFunc) {
}
}
app.mux.HandleFunc(pattern, wrapped)
app.mux.HandleFunc(pattern, withLogging(wrapped))
}
func (app *App) handleNotSignedIn(pattern string, fn handlerFunc) {