js-waku/proto/chat/v2/chat_message.proto
Franck Royer 3b7fc44419
Remove Proto suffix
Manage with namespace instead.
2021-05-10 15:53:23 +10:00

10 lines
126 B
Protocol Buffer

syntax = "proto3";
package chat.v2;
message ChatMessage {
uint64 timestamp = 1;
string nick = 2;
bytes payload = 3;
}