Files
dasy/protobuf/message.proto
Dean Eigenmann c2e58f0124 remove/protobuf-parent (#10)
* started removing

* updates

* fix

* please pass

* remove import
2019-10-22 11:08:57 +02:00

22 lines
308 B
Protocol Buffer

syntax = "proto3";
package mvds;
option go_package = "protobuf";
message Message {
enum MessageType {
INVITE = 0;
JOIN = 1;
LEAVE = 2;
KICK = 3;
ACK = 4;
POST = 5;
}
MessageType message_type = 1;
bytes body = 2;
bytes signature = 3;
}