awaur 0.2.1

AWAUR: Asynchronous Web API Utilities for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Definitions for types used with the [`endpoint!`] macro. See the
//! documentation on that macro for information about how the members of this
//! module are intended to be used.
//!
//! [`endpoint!`]: crate::endpoints::endpoint

pub(crate) mod errors;
pub(crate) mod macros;
pub(crate) mod response;

pub use errors::*;
pub use macros::*;
pub use response::*;