mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 09:40:24 +08:00
856b5aadb1
* reactor alert * optimize * add test case * update the target directory in case proto contains option * fix missing comments and format code
25 lines
352 B
Protocol Buffer
25 lines
352 B
Protocol Buffer
// test proto
|
|
syntax = "proto3";
|
|
|
|
package test;
|
|
option go_package = "go";
|
|
|
|
import "test_base.proto";
|
|
|
|
message TestMessage {
|
|
base.CommonReq req = 1;
|
|
}
|
|
message TestReq {}
|
|
message TestReply {
|
|
base.CommonReply reply = 2;
|
|
}
|
|
|
|
enum TestEnum {
|
|
unknown = 0;
|
|
male = 1;
|
|
female = 2;
|
|
}
|
|
|
|
service TestService {
|
|
rpc TestRpc (TestReq) returns (TestReply);
|
|
} |