mirror of
https://github.com/go-kratos/kratos.git
synced 2025-03-31 22:05:08 +02:00
12 lines
191 B
Protocol Buffer
12 lines
191 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package test;
|
||
|
|
||
|
option go_package = "../testproto";
|
||
|
|
||
|
message test_model {
|
||
|
int64 id = 1;
|
||
|
string name = 2;
|
||
|
repeated string hobby = 3;
|
||
|
map<string, string> attrs = 4;
|
||
|
}
|