curseforge 0.3.1

A straightforward asynchronous wrapper around the CurseForge Core API. Public API is subject to change before 1.0.0.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Definitions for all types that are utilized by [`Client`] methods
//! when making requests to the remote API.
//!
//! [`Client`]: crate::official::client::Client

pub(crate) mod pagination;
pub(crate) mod params;
pub(crate) mod response;

pub use pagination::*;
pub use params::*;
pub use response::*;