mirror of
https://github.com/waku-org/js-waku.git
synced 2025-01-12 05:24:43 +00:00
3b7fc44419
Manage with namespace instead.
10 lines
126 B
Protocol Buffer
10 lines
126 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package chat.v2;
|
|
|
|
message ChatMessage {
|
|
uint64 timestamp = 1;
|
|
string nick = 2;
|
|
bytes payload = 3;
|
|
}
|