fuel_streams_nats/
lib.rs

1/// Houses shared APIs for interacting with NATS for sv-publisher and fuel-streams crates
2/// As much as possible, the public interface/APIS should be agnostic of NATS. These can then be extended
3/// in the sv-publisher and fuel-streams crates to provide a more opinionated API towards
4/// their specific use-cases.
5pub mod error;
6pub mod nats_client;
7pub mod nats_client_opts;
8pub mod nats_namespace;
9pub mod types;
10
11pub use error::*;
12pub use nats_client::*;
13pub use nats_client_opts::*;
14pub use nats_namespace::*;
15pub use types::*;