wp-mini 0.2.0-alpha.3

Minimal async API Wrapper for WP | Only Reader/Public API | Extremely minimal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! An asynchronous, unofficial Wattpad API wrapper for Rust.

// Declare the modules that make up the library.
mod client;
pub mod endpoints;
pub mod field;
mod error;
mod model;
pub mod types;
mod pagination;

// Publicly export the primary types for easy use.
pub use client::WattpadClient;
pub use error::WattpadError;