| 14 | var ErrInternal = errors.New("internal error!") |
| 15 | |
| 16 | type EchoServer struct { |
| 17 | } |
| 18 | |
| 19 | func (srv *EchoServer) Echo(ctx context.Context, req *EchoRequest) (*EchoReply, error) { |
| 20 | msg := req.Text |
nothing calls this directly
no outgoing calls
no test coverage detected