UnimplementedHTTPServer can be embedded to have forward compatible implementations.
| 431 | |
| 432 | // UnimplementedHTTPServer can be embedded to have forward compatible implementations. |
| 433 | type UnimplementedHTTPServer struct { |
| 434 | } |
| 435 | |
| 436 | func (*UnimplementedHTTPServer) Handle(ctx context.Context, req *HTTPRequest) (*HTTPResponse, error) { |
| 437 | return nil, status.Errorf(codes.Unimplemented, "method Handle not implemented") |
nothing calls this directly
no outgoing calls
no test coverage detected