mirror of
https://github.com/vacp2p/go-transport-experiment.git
synced 2026-01-06 22:13:53 -05:00
13 lines
174 B
Protocol Buffer
13 lines
174 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pb;
|
|
|
|
message Payload {
|
|
bytes payload = 1;
|
|
string origin = 2;
|
|
}
|
|
|
|
message Message {
|
|
Payload payload = 1;
|
|
repeated string path = 2;
|
|
} |