pub mod client {
#[cfg(feature = "grpc_network")]
pub mod agent_grpc;
#[cfg(any(
feature = "networks",
feature = "grpc_network",
feature = "zmq_network"
))]
pub mod agent_wrapper;
#[cfg(feature = "zmq_network")]
pub mod agent_zmq;
}
pub mod server {
#[cfg(feature = "grpc_network")]
pub mod training_grpc;
#[cfg(any(
feature = "networks",
feature = "grpc_network",
feature = "zmq_network"
))]
pub mod training_server_wrapper;
#[cfg(feature = "zmq_network")]
pub mod training_zmq;
pub(crate) mod python_subprocesses {
#[cfg(any(
feature = "networks",
feature = "grpc_network",
feature = "zmq_network"
))]
pub(crate) mod python_algorithm_request;
#[cfg(any(
feature = "networks",
feature = "grpc_network",
feature = "zmq_network"
))]
pub(crate) mod python_training_tensorboard;
}
}