clu_middleware_tron/lib.rs
1/*
2 * @Author: José Sánchez-Gallego (gallegoj@uw.edu)
3 * @Date: 2025-12-04
4 * @Filename: lib.rs
5 * @License: BSD 3-clause (http://www.opensource.org/licenses/BSD-3-Clause)
6 */
7
8//! A library and service to act as middleware between Tron actors and a RabbitMQ message broker.
9//!
10//! Refer to the [README](https://github.com/sdss/clu-middleware-tron/blob/main/README.md) in
11//! the [clu-middleware-tron](https://github.com/sdss/clu-middleware-tron) repository for more
12//! information.
13
14pub mod parser;
15pub mod rabbitmq;
16pub mod tcp;
17pub mod tool;