ubi_rs/
lib.rs

1pub mod client;
2pub mod commands;
3pub mod errors;
4pub mod serde_ext;
5mod ubiclient;
6pub use ubiclient::UbiClient;
7pub mod models {
8    pub use super::commands::kc::{
9        ClusterItem, QueryParams, ReqClusterCreate, ResponseListKubernetesClusters,
10    };
11}