hwServer is used to implement helloworld.GreeterServer.
| 38 | |
| 39 | // hwServer is used to implement helloworld.GreeterServer. |
| 40 | type hwServer struct { |
| 41 | hwpb.UnimplementedGreeterServer |
| 42 | } |
| 43 | |
| 44 | // SayHello implements helloworld.GreeterServer |
| 45 | func (s *hwServer) SayHello(_ context.Context, in *hwpb.HelloRequest) (*hwpb.HelloReply, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected