(ctx context.Context, in *CreateTripRequest, opts ...grpc.CallOption)
| 50 | } |
| 51 | |
| 52 | func (c *tripServiceClient) CreateTrip(ctx context.Context, in *CreateTripRequest, opts ...grpc.CallOption) (*CreateTripResponse, error) { |
| 53 | cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) |
| 54 | out := new(CreateTripResponse) |
| 55 | err := c.cc.Invoke(ctx, TripService_CreateTrip_FullMethodName, in, out, cOpts...) |
| 56 | if err != nil { |
| 57 | return nil, err |
| 58 | } |
| 59 | return out, nil |
| 60 | } |
| 61 | |
| 62 | // TripServiceServer is the server API for TripService service. |
| 63 | // All implementations must embed UnimplementedTripServiceServer |
nothing calls this directly
no outgoing calls
no test coverage detected