perf.go 237 B

1234567891011121314
  1. package middleware
  2. import (
  3. "net/http"
  4. "gopkg.in/macaron.v1"
  5. m "github.com/grafana/grafana/pkg/models"
  6. )
  7. func MeasureRequestTime() macaron.Handler {
  8. return func(res http.ResponseWriter, req *http.Request, c *m.ReqContext) {
  9. }
  10. }