mirror of
https://github.com/containers/buildah.git
synced 2026-02-06 03:45:19 +01:00
Update github.com/openshift/imagebuilder to the v1.2.6 release Update github.com/containers/common to the current tip of the main branch Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
11 lines
392 B
Go
11 lines
392 B
Go
// Package httpsnoop provides an easy way to capture http related metrics (i.e.
|
|
// response time, bytes written, and http status code) from your application's
|
|
// http.Handlers.
|
|
//
|
|
// Doing this requires non-trivial wrapping of the http.ResponseWriter
|
|
// interface, which is also exposed for users interested in a more low-level
|
|
// API.
|
|
package httpsnoop
|
|
|
|
//go:generate go run codegen/main.go
|