mirror of
https://github.com/vacp2p/dasy.git
synced 2026-01-08 22:37:59 -05:00
22 lines
308 B
Protocol Buffer
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;
|
|
}
|
|
|