nestrs-microservices 0.3.6

Microservice transport and client primitives for nestrs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "rabbitmq")]
mod live;
#[cfg(feature = "rabbitmq")]
pub use live::{
    RabbitMqMicroserviceOptions, RabbitMqMicroserviceServer, RabbitMqTransport,
    RabbitMqTransportOptions,
};

#[cfg(not(feature = "rabbitmq"))]
mod stub;
#[cfg(not(feature = "rabbitmq"))]
pub use stub::RabbitMqTransport;