mirror of https://github.com/status-im/go-waku.git
9 lines
127 B
Protocol Buffer
9 lines
127 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package pb;
|
||
|
|
||
|
message Chat2Message {
|
||
|
uint64 timestamp = 1;
|
||
|
string nick = 2;
|
||
|
bytes payload = 3;
|
||
|
}
|