5
0
Fork 0
backend-protobuf/bite.proto

13 lines
157 B
Protocol Buffer

syntax = "proto3";
package protobuf;
import "client.proto";
message Bite {
string key = 1;
uint64 start = 2;
bytes data = 3;
Client client = 4;
}