Files
libchat/extensions/components/src/lib.rs
T
kaichao 5c55c2ee76 feat: publish key bundles and accounts via logos delivery (#184)
* feat: publish key bundles and accounts via logos delivery

* chore: clear format

* feat: use protobuf for registry

* chore: update chat proto rev

* feat: merge http registry into logos delivery

* chore: renaming chat store for contact registry
2026-07-26 09:10:43 +08:00

14 lines
339 B
Rust

mod contact_registry;
pub mod delivery;
mod storage;
mod wakeup;
pub use contact_registry::ephemeral::EphemeralRegistry;
pub use contact_registry::store::{
ACCOUNT_SUBMIT_ADDRESS, ContactRegistry, ContactRegistryError, KEYPACKAGE_SUBMIT_ADDRESS,
RegistryPublishMode,
};
pub use delivery::*;
pub use storage::*;
pub use wakeup::*;