s6-0day/source/Sources/App/Proto/Message.proto

26 lines
362 B
Protocol Buffer
Raw Normal View History

2022-11-18 09:06:38 +01:00
syntax = "proto3";
enum Action {
ACTION_SEND = 0;
ACTION_GET = 1;
ACTION_INBOX = 2;
}
message Mex {
string from = 1;
string content = 2;
int64 at = 3;
}
message RespData {
string error = 1;
repeated Mex messages = 2;
}
message ReqData {
Action action = 1;
string content = 2;
string from = 3;
string to = 4;
}