9 lines
200 B
Go
9 lines
200 B
Go
package observability
|
|
|
|
import "net/http"
|
|
|
|
func MetricsHandler() http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusNotImplemented)
|
|
})
|
|
}
|