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;
10
11// Publicly export the primary types for easy use.
12pub use client::WattpadClient;
13pub use error::WattpadError;