mirror of
https://gitee.com/dgflash/oops-framework.git
synced 2026-06-18 19:52:10 +08:00
7 lines
119 B
Protocol Buffer
7 lines
119 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
// A very simple protobuf message.
|
|
message Person {
|
|
string name = 1;
|
|
uint64 id = 2;
|
|
} |