ik_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;
6mod error;
7mod model;
8pub mod types;
9
10// Publicly export the primary types for easy use.
11pub use client::InkittClient;
12pub use error::InkittError;