server is used to implement helloworld.GreeterServer.
| 46 | |
| 47 | // server is used to implement helloworld.GreeterServer. |
| 48 | type server struct { |
| 49 | pb.UnimplementedGreeterServer |
| 50 | addr string |
| 51 | } |
| 52 | |
| 53 | // SayHello implements helloworld.GreeterServer |
| 54 | func (s *server) SayHello(_ context.Context, in *pb.HelloRequest) (*pb.HelloReply, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected