mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-05-12 13:09:29 +00:00
13 lines
349 B
Rust
13 lines
349 B
Rust
mod client;
|
|
mod delivery_in_process;
|
|
mod errors;
|
|
|
|
pub use client::ChatClient;
|
|
pub use delivery_in_process::{Cursor, InProcessDelivery, MessageBus};
|
|
pub use errors::ClientError;
|
|
|
|
// Re-export types callers need to interact with ChatClient
|
|
pub use libchat::{
|
|
AddressedEnvelope, ContentData, ConversationIdOwned, DeliveryService, StorageConfig,
|
|
};
|