5
0
Fork 0
backend-protobuf/bite.proto

13 lines
157 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
2019-02-10 22:20:57 +08:00
import "client.proto";
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;
2019-02-10 22:20:57 +08:00
Client client = 4;
2019-02-06 13:26:14 +08:00
}