17 lines
290 B
Protocol Buffer
17 lines
290 B
Protocol Buffer
syntax = "proto3";
|
|
package ressource;
|
|
|
|
// [RINF:DART-SIGNAL]
|
|
message Files {
|
|
repeated string filenames = 1;
|
|
string relay = 2;
|
|
}
|
|
|
|
// [RINF:RUST-SIGNAL]
|
|
message Name { string rand_name = 1; }
|
|
|
|
// [RINF:DART-SIGNAL]
|
|
message TransferName {
|
|
string relay = 1;
|
|
string transfer_name = 2;
|
|
}
|