mirror of
https://github.com/go-kratos/kratos.git
synced 2025-02-09 13:36:57 +02:00
12 lines
190 B
Protocol Buffer
12 lines
190 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package test;
|
|
|
|
option go_package = "../encoding";
|
|
|
|
message test_model {
|
|
int64 id = 1;
|
|
string name = 2;
|
|
repeated string hobby = 3;
|
|
map<string, string> attrs = 4;
|
|
} |