mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-06-28 03:59:27 +00:00
13 lines
311 B
Rust
13 lines
311 B
Rust
mod contact_registry;
|
|
pub mod delivery;
|
|
mod storage;
|
|
mod wakeup;
|
|
|
|
pub use contact_registry::ephemeral::EphemeralRegistry;
|
|
pub use contact_registry::http::{HttpRegistry, HttpRegistryError};
|
|
pub use storage::*;
|
|
pub use wakeup::*;
|
|
|
|
#[cfg(logos_delivery)]
|
|
pub use delivery::{EmbeddedP2pDeliveryService, P2pConfig};
|