mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 02:10:45 -06:00
14 lines
239 B
Go
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) {
|
|
}
|
|
}
|