1 2 3 4 5 6 7 8 9
//! Routing APIs for broker-agnostic and broker-specific application builders. pub mod base; #[cfg(feature = "nats")] pub mod nats; pub use base::Router; #[cfg(feature = "nats")] pub use nats::NatsRouter;