forked from Research/WhisperCom
8 lines
162 B
Protocol Buffer
8 lines
162 B
Protocol Buffer
syntax = "proto3";
|
|
import "google/protobuf/any.proto";
|
|
package WhisperCom.Protobuf;
|
|
|
|
message Message {
|
|
uint32 type = 1;
|
|
google.protobuf.Any payload = 2;
|
|
} |