wp_mini/lib.rs
1//! An asynchronous, unofficial Wattpad API wrapper for Rust.
2
3// Declare the modules that make up the library.
4mod client;
5pub mod endpoints;
6pub mod field;
7mod error;
8mod model;
9pub mod types;
10mod pagination;
11
12// Publicly export the primary types for easy use.
13pub use client::WattpadClient;
14pub use error::WattpadError;