UnimplementedGenServer must be embedded to have forward compatible implementations.
| 52 | |
| 53 | // UnimplementedGenServer must be embedded to have forward compatible implementations. |
| 54 | type UnimplementedGenServer struct { |
| 55 | } |
| 56 | |
| 57 | func (UnimplementedGenServer) Generate(context.Context, *GenerateRequest) (*GenerateResponse, error) { |
| 58 | return nil, status.Errorf(codes.Unimplemented, "method Generate not implemented") |
nothing calls this directly
no outgoing calls
no test coverage detected