Closed wingyplus closed 2 years ago
Is it used in tests? Perhaps we can just remove GRPC.Message.Protobuf and replace with the other one
Is it used in tests? Perhaps we can just remove GRPC.Message.Protobuf and replace with the other one
See only its tests, not other place. :(
Currently, we have 2 modules that do encode/decode protobuf message:
The first one is
GRPC.Codec.Proto
, the usage in code base is:And the second one is
GRPC.Message.Protobuf
which do similar thing but acceptmod
andstruct
separately. It's no usage in the code base but just test:I purpose to remove
GRPC.Message.Protobuf
since there's no usage in our code base. I can open a PR to fix this issue. :)