simple_slack_gen 0.2.0

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