1//! Client module - JSON-RPC client for communicating with zinit server 2 3pub mod handle; 4pub mod rpc; 5 6pub use handle::ZinitHandle; 7pub use rpc::{get_socket_path, ServiceConfig, ServiceStats, ServiceStatus, ZinitClient};