Client API for User service
| 43 | // Client API for User service |
| 44 | |
| 45 | type UserService interface { |
| 46 | RpcUserInfo(ctx context.Context, in *ReqMsg, opts ...client.CallOption) (*ResMsg, error) |
| 47 | } |
| 48 | |
| 49 | type userService struct { |
| 50 | c client.Client |
nothing calls this directly
no outgoing calls
no test coverage detected