chat_proto/protos/inbox.proto
Jazz Turner-Baggs 615f856588
Update Inbox types (#4)
* Add Xk0

* update rust impl

* clean up

* Update tests

* Update .gitignore
2026-01-15 08:46:18 -08:00

16 lines
216 B
Protocol Buffer

syntax = "proto3";
package logoschat.inbox;
import "invite.proto";
message Note{
string text = 1;
}
message InboxV1Frame {
oneof frame_type {
invite.InvitePrivateV1 invite_private_v1 = 1;
}
}