mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-07-09 09:29:39 +00:00
* Move logos_delivery to components Rename components update deps WIP Remove requirement for build.rs in chat-cli fix imports update linux flake Linter fixes fix build in linux * Update docs * Blankspace fix
11 lines
249 B
Rust
11 lines
249 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 delivery::*;
|
|
pub use storage::*;
|
|
pub use wakeup::*;
|