grafana/pkg/middleware/perf.go
2018-03-07 11:54:50 -05:00

15 lines
237 B
Go

package middleware
import (
"net/http"
"gopkg.in/macaron.v1"
m "github.com/grafana/grafana/pkg/models"
)
func MeasureRequestTime() macaron.Handler {
return func(res http.ResponseWriter, req *http.Request, c *m.ReqContext) {
}
}