1 2 3 4 5 6 7 8 9 10 11
//! Python bindings for the client module. #[cfg(feature = "batch")] pub mod batch; pub mod distributed; pub mod functions; pub mod types; pub use distributed::PyClient; #[cfg(feature = "offline")] pub use types::PyOfflineClient;