mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
13 lines
188 B
Go
13 lines
188 B
Go
|
package middleware
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"gopkg.in/macaron.v1"
|
||
|
)
|
||
|
|
||
|
func MeasureRequestTime() macaron.Handler {
|
||
|
return func(res http.ResponseWriter, req *http.Request, c *Context) {
|
||
|
}
|
||
|
}
|