mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-03 00:12:54 +01:00
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;
|
||
|
}
|