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