13 lines
349 B
Rust
Raw Normal View History

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
2026-04-23 18:04:45 -07:00
pub use libchat::{
AddressedEnvelope, ContentData, ConversationIdOwned, DeliveryService, StorageConfig,
};