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