5
0
Fork 0
backend-protobuf/bite.proto

9 lines
111 B
Protocol Buffer
Raw Normal View History

2019-02-06 13:26:14 +08:00
syntax = "proto3";
2019-06-23 08:35:57 +08:00
package protobuf;
2019-02-06 13:26:14 +08:00
message Bite {
string key = 1;
2019-02-06 13:26:14 +08:00
uint64 start = 2;
bytes data = 3;
}