sideko_rest_api/
lib.rs

1mod client;
2mod core;
3pub mod environment;
4pub mod models;
5pub mod resources;
6pub use client::SidekoClient;
7pub use core::{
8    response::BinaryResponse, error::{ApiError, Error},
9    patch::Patch, upload_file::UploadFile,
10};
11pub use environment::Environment;
12pub type SdkResult<T> = Result<T, crate::core::error::Error>;