TripServiceClient is the client API for TripService service. For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
| 27 | // |
| 28 | // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. |
| 29 | type TripServiceClient interface { |
| 30 | PreviewTrip(ctx context.Context, in *PreviewTripRequest, opts ...grpc.CallOption) (*PreviewTripResponse, error) |
| 31 | CreateTrip(ctx context.Context, in *CreateTripRequest, opts ...grpc.CallOption) (*CreateTripResponse, error) |
| 32 | } |
| 33 | |
| 34 | type tripServiceClient struct { |
| 35 | cc grpc.ClientConnInterface |
no outgoing calls
no test coverage detected