You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
346 B
Protocol Buffer
25 lines
346 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);
|
|
} |