crabbyq 1.0.0

A declarative async Rust framework for message-driven microservices.
Documentation
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;