mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-08-25 23:21:10 +00:00
* 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
14 lines
339 B
Rust
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::*;
|