(mn string)
| 48 | ) |
| 49 | |
| 50 | func removeLeadingSlash(mn string) string { |
| 51 | return strings.TrimLeft(mn, "/") |
| 52 | } |
| 53 | |
| 54 | // metricsInfo is data used for recording metrics about the rpc attempt client |
| 55 | // side, and the overall rpc server side. |
no outgoing calls
no test coverage detected