11 lines
130 B
Protocol Buffer
11 lines
130 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package test;
|
|
|
|
option go_package = "test/proto";
|
|
|
|
message TestMessage {
|
|
string name = 1;
|
|
int32 age = 2;
|
|
}
|