(ctx context.Context, in *PreviewTripRequest, opts ...grpc.CallOption)
| 40 | } |
| 41 | |
| 42 | func (c *tripServiceClient) PreviewTrip(ctx context.Context, in *PreviewTripRequest, opts ...grpc.CallOption) (*PreviewTripResponse, error) { |
| 43 | cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) |
| 44 | out := new(PreviewTripResponse) |
| 45 | err := c.cc.Invoke(ctx, TripService_PreviewTrip_FullMethodName, in, out, cOpts...) |
| 46 | if err != nil { |
| 47 | return nil, err |
| 48 | } |
| 49 | return out, nil |
| 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...) |
nothing calls this directly
no outgoing calls
no test coverage detected