nim-chat-poc/protos/envelope.proto

17 lines
358 B
Protocol Buffer
Raw Permalink Normal View History

2025-07-05 14:54:19 -07:00
syntax = "proto3";
2025-07-11 14:46:05 -07:00
package wap.envelope;
2025-07-05 14:54:19 -07:00
///////////////////////////////////////////////////////////////////////////////
// Payload Framing Messages
///////////////////////////////////////////////////////////////////////////////
2025-07-11 14:46:05 -07:00
message WapEnvelopeV1 {
2025-07-05 14:54:19 -07:00
string conversation_hint = 1;
uint64 salt = 2;
bytes payload = 5;
}