nim-chat-poc/protos/invite.proto
Jazz Turner-Baggs 7ee12eb250
Inbound Path (#38)
* refactor invite

* Update tests

* Cleanups

* Remove ContentFrame references
2025-12-16 08:20:53 -08:00

15 lines
306 B
Protocol Buffer

syntax = "proto3";
package wap.invite;
import "encryption.proto";
message InvitePrivateV1 {
bytes initiator = 1;
bytes initiator_ephemeral = 2;
bytes participant = 3;
int32 participant_ephemeral_id= 4;
string discriminator = 5;
encryption.EncryptedPayload initial_message = 6;
}