TripServiceServer is the server API for TripService service. All implementations must embed UnimplementedTripServiceServer for forward compatibility.
| 63 | // All implementations must embed UnimplementedTripServiceServer |
| 64 | // for forward compatibility. |
| 65 | type TripServiceServer interface { |
| 66 | PreviewTrip(context.Context, *PreviewTripRequest) (*PreviewTripResponse, error) |
| 67 | CreateTrip(context.Context, *CreateTripRequest) (*CreateTripResponse, error) |
| 68 | mustEmbedUnimplementedTripServiceServer() |
| 69 | } |
| 70 | |
| 71 | // UnimplementedTripServiceServer must be embedded to have |
| 72 | // forward compatible implementations. |
nothing calls this directly
no outgoing calls
no test coverage detected