package metrics import ( "net/http" "github.com/prometheus/client_golang/prometheus/promhttp" ) // Handler returns a standard Prometheus metrics HTTP handler. func Handler() http.Handler { return promhttp.Handler() }