chat_proto/proto/umbra/inbox.proto
Jazz Turner-Baggs 90b3154c12
newline cleanup
2025-07-04 13:36:36 -07:00

13 lines
201 B
Protocol Buffer

syntax = "proto3";
package umbra.inbox;
import "invite.proto";
message InboxV1Frame {
string recipient = 1;
oneof frame_type {
invite.InvitePrivateV1 invite_private_v1 = 10;
}
}