mirror of
https://github.com/logos-messaging/lab.waku.org.git
synced 2026-01-11 02:03:10 +00:00
chore: update waku deps to latest chore: remove relay chats, move all examples to experimental, add notes example fix: notes example: use nightly waku deps and set pubsub topic in node/enc/dec
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;
|
|
}
|