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