15 lines
182 B
Protocol Buffer
15 lines
182 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Common;
|
|
option go_package = "tldemo/services/Common";
|
|
|
|
enum Gender {
|
|
Male=0;
|
|
Female=1;
|
|
}
|
|
|
|
message RegisterResponse {
|
|
uint64 id = 1;
|
|
string msg = 2;
|
|
}
|