mirror of
https://github.com/status-im/js-waku.git
synced 2025-02-23 18:38:11 +00:00
10 lines
131 B
Protocol Buffer
10 lines
131 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package chat.v2;
|
|
|
|
message ChatMessageProto {
|
|
uint64 timestamp = 1;
|
|
string nick = 2;
|
|
bytes payload = 3;
|
|
}
|