grafana/pkg/middleware/perf.go

15 lines
234 B
Go
Raw Normal View History

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.Context) {
}
}