Open mw66 opened 1 year ago
I am using: https://github.com/hatf0/grpc-d-compiler
but:
protoc --plugin=protoc-gen-grpc-d=../grpc-d-compiler/protoc-gen-grpc-d helloworld.proto --d_opt=message-as-struct --d_out=./source
does not generate the service interface, i.e in the newly generate file, the following are missing:
-interface Greeter -{ - @RPC("/helloworld.Greeter/SayHello") - Status SayHello(HelloRequest, ref HelloReply); - -}
Do I need to pass in some additional flag?
Thanks.
Interesting. Let me see if I'm able to reproduce this
Was not able to reproduce this. Please try with the latest compiler that I just pushed?
I am using: https://github.com/hatf0/grpc-d-compiler
but:
does not generate the service interface, i.e in the newly generate file, the following are missing:
Do I need to pass in some additional flag?
Thanks.