mirror of
https://github.com/logos-messaging/go-libp2p-pubsub.git
synced 2026-01-02 12:53:09 +00:00
13 lines
226 B
Protocol Buffer
13 lines
226 B
Protocol Buffer
|
|
syntax = "proto2";
|
||
|
|
|
||
|
|
package compat.pb;
|
||
|
|
|
||
|
|
message Message {
|
||
|
|
optional bytes from = 1;
|
||
|
|
optional bytes data = 2;
|
||
|
|
optional bytes seqno = 3;
|
||
|
|
repeated string topicIDs = 4;
|
||
|
|
optional bytes signature = 5;
|
||
|
|
optional bytes key = 6;
|
||
|
|
}
|