mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-11-18 17:29:26 +01:00
7389f85ef2
- Move fancy naming to Hub - Adopt translations - Fix long authors list in bot - Support CJK in scitech - Fixed pylon bug with decoding improper unicode ch... GitOrigin-RevId: 74f73c44f749a71cb65dd5ddd3416f32a83d329f
19 lines
267 B
Protocol Buffer
19 lines
267 B
Protocol Buffer
syntax = "proto3";
|
|
package nexus.pylon.proto;
|
|
|
|
message Chunk {
|
|
bytes content = 1;
|
|
}
|
|
|
|
message FileResponse {
|
|
enum Status {
|
|
RESOLVING = 0;
|
|
BEGIN_TRANSMISSION = 1;
|
|
}
|
|
oneof response {
|
|
Chunk chunk = 1;
|
|
Status status = 2;
|
|
}
|
|
string source = 3;
|
|
}
|