You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
190 B
12 lines
190 B
3 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package test;
|
||
|
|
||
3 years ago
|
option go_package = "../encoding";
|
||
3 years ago
|
|
||
|
message test_model {
|
||
|
int64 id = 1;
|
||
|
string name = 2;
|
||
|
repeated string hobby = 3;
|
||
|
map<string, string> attrs = 4;
|
||
|
}
|