grafana/pkg/middleware/perf.go
2020-02-28 12:50:58 +01:00

14 lines
239 B
Go

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