go-zero/tools/goctl/rpc/parser/test_invalid_request.proto
Keson 856b5aadb1
rpc generation fix (#184)
* reactor alert

* optimize

* add test case

* update the target directory in case proto contains option

* fix missing comments and format code
2020-11-05 19:08:34 +08:00

13 lines
169 B
Protocol Buffer

syntax = "proto3";
package test;
option go_package = "go";
import "base.proto";
message Reply{}
service TestService {
rpc TestRpcTwo (base.Req) returns (Reply);
}