mq-bridge 0.3.8

An asynchronous message bridging library connecting Kafka, MQTT, AMQP, NATS, MongoDB, HTTP, and more.
Documentation
//  mq-bridge
//  © Copyright 2025, by Marco Mengelkoch
//  Licensed under MIT License, see License file for more details
//  git clone https://github.com/marcomq/mq-bridge

//! Structural endpoints.
//!
//! These do not talk to an external system. They compose, route, or terminate the
//! message flow and appear wherever an endpoint is expected. Their config variants
//! are tagged `"format": "structural_endpoint"` in the JSON schema.
//!
//! See `REFERENCE.md` for fields, defaults and examples.

pub mod fanout;
pub mod null;
pub mod reader;
pub mod request;
pub mod response;
pub mod static_endpoint;
pub mod stream_buffer;
pub mod switch;