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
13
14
//! Contains the data structures that represent objects from the Wattpad API.
//!
//! Each submodule defines a specific model, such as `Story`, `User`, or `Part`.
//! These models are `pub(crate)`, meaning they are intended for internal use within
//! the library. They are exposed to the end-user through the public type aliases
//! in the `crate::types` module.

mod chapter;
mod story;
mod auth;

pub(crate) use chapter::*;
pub(crate) use story::*;
pub(crate) use auth::*;