| 9 | ) |
| 10 | |
| 11 | type grpcRequest struct { |
| 12 | service string |
| 13 | method string |
| 14 | contentType string |
| 15 | request interface{} |
| 16 | opts client.RequestOptions |
| 17 | codec codec.Codec |
| 18 | } |
| 19 | |
| 20 | // service Struct.Method /service.Struct/Method. |
| 21 | func methodToGRPC(service, method string) string { |
nothing calls this directly
no outgoing calls
no test coverage detected