mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
15 lines
237 B
Go
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) {
|
|
}
|
|
}
|