(routeName string, r *http.Request)
| 294 | } |
| 295 | |
| 296 | func getOperationName(routeName string, r *http.Request) string { |
| 297 | if routeName == "" { |
| 298 | return "HTTP " + r.Method |
| 299 | } |
| 300 | return fmt.Sprintf("HTTP %s - %s", r.Method, routeName) |
| 301 | } |
no outgoing calls
no test coverage detected