如题,运行时不支持 @bufbuild/protobuf@2.2.5 的版本,按仓库里的v1 版本代码可以运行起来。
syntax = "proto3";
package apache.dubbo.demo.example.v1;
message SayRequest {
string sentence = 1;
}
message SayResponse {
string sentence = 1;
}
service ExampleService {
rpc Say(SayRequest) returns (SayResponse) {}
}