nestrs-microservices 0.3.2

Microservice transport and client primitives for nestrs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "mqtt")]
mod live;
#[cfg(feature = "mqtt")]
pub use live::{
    MqttMicroserviceOptions, MqttMicroserviceServer, MqttSocketOptions, MqttTlsMode, MqttTransport,
    MqttTransportOptions,
};

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