mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-08-04 06:03:12 +00:00
* feat: separate embedded p2p delievery to its own crate * feat: separate p2p config in its own crate * chore: split embed module * chore: refactor registry config * feat: split logos chat crate * chore: refactor
13 lines
432 B
Rust
13 lines
432 B
Rust
mod logos;
|
|
|
|
pub use logos::{LogosChatClient, LogosConfig, REGISTRY_ENDPOINT, open, open_with_transport};
|
|
// Facade re-exports so callers need no direct dependency on the transport
|
|
// crate.
|
|
pub use embedded_logos_delivery::{
|
|
DEFAULT_NETWORK_PRESET, DEFAULT_TCP_PORT, EmbeddedLogosDelivery, P2pConfig,
|
|
};
|
|
|
|
// Re-export the transport-generic client surface so callers depend on this
|
|
// crate alone.
|
|
pub use logos_generic_chat::*;
|