dynamo_runtime/transports.rs
1// SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0
3
4//! The Transports module hosts all the network communication stacks used for talking
5//! to services or moving data around the network.
6//!
7//! These are the low-level building blocks for the distributed system.
8
9pub mod etcd;
10pub mod nats;
11pub mod tcp;
12mod utils;
13pub mod zmq;