| 53 | } |
| 54 | |
| 55 | type UserHTTPClient interface { |
| 56 | GetUser(ctx context.Context, req *GetUserRequest, opts ...http.CallOption) (rsp *GetUserReply, err error) |
| 57 | } |
| 58 | |
| 59 | type UserHTTPClientImpl struct { |
| 60 | cc *http.Client |
nothing calls this directly
no outgoing calls
no test coverage detected