5
0
Fork 0
backend-protobuf/README.md

14 lines
226 B
Markdown
Raw Normal View History

2019-02-05 22:10:41 +08:00
# backend-protobuf
2019-02-06 13:26:14 +08:00
Definitions of [protobufs](https://developers.google.com/protocol-buffers) used in Beep backend.
### Bite (bite.proto)
```proto
message Bite {
bytes key = 1;
uint64 start = 2;
bytes data = 3;
}
```