mirror of
https://github.com/logos-messaging/examples.waku.org.git
synced 2026-01-02 12:53:08 +00:00
8 lines
108 B
Protocol Buffer
8 lines
108 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message ChatMessage {
|
|
uint64 timestamp = 1;
|
|
string nick = 2;
|
|
bytes payload = 3;
|
|
}
|