mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-04 23:03:07 +00:00
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;
|
|
}
|