(handler http.Handler)
| 8 | ) |
| 9 | |
| 10 | func logRequest(handler http.Handler) http.Handler { |
| 11 | return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { |
| 12 | log.Infof("%s %s", r.Method, r.URL) |
| 13 | handler.ServeHTTP(w, r) |
| 14 | }) |
| 15 | } |
| 16 | |
| 17 | func serveCmd() *cobra.Command { |
| 18 | var ( |