mirror of
https://github.com/boostorg/redis.git
synced 2026-01-19 04:42:09 +00:00
10 lines
140 B
Protocol Buffer
10 lines
140 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package tutorial;
|
|
|
|
message person {
|
|
optional string name = 1;
|
|
optional int32 id = 2;
|
|
optional string email = 3;
|
|
}
|