ik-mini 0.2.0-alpha.5

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

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

// Publicly export the primary types for easy use.
pub use client::InkittClient;
pub use error::InkittError;