apisdk 0.0.4-beta.4

A highlevel API client framework for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod execute;
mod form;
mod macros;

pub use form::*;
pub use macros::*;

/// Internal struct & functions
#[doc(hidden)]
pub mod internal {
    pub use super::execute::RequestConfigurator;
    pub use super::execute::_send;
    pub use super::execute::_send_form;
    pub use super::execute::_send_json;
    pub use super::execute::_send_multipart;
    pub use super::execute::_send_raw;
}