1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! NATS connector module for pub/sub messaging. //! //! This module provides a NATS-based connector, //! enabling asynchronous message publishing and subscription management. mod errors; pub mod impl_ack; pub mod impl_ctx; pub mod options; mod sub_fetcher; pub use errors::NatsSubFetcherError; pub use options::AckSubOptions; pub use sub_fetcher::SubFetcher;