perf.go 188 B

123456789101112
  1. package middleware
  2. import (
  3. "net/http"
  4. "gopkg.in/macaron.v1"
  5. )
  6. func MeasureRequestTime() macaron.Handler {
  7. return func(res http.ResponseWriter, req *http.Request, c *Context) {
  8. }
  9. }