webtoon 0.9.0

Client for interacting with various webtoon websites.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! An abstraction for the `webtoons.com` website.

pub mod client;
pub mod creator;
pub mod errors;
pub mod meta;
pub mod webtoon;

pub mod canvas;
pub mod originals;

pub use client::{Client, ClientBuilder};
pub use creator::Creator;
pub use meta::{Language, Type};
pub use webtoon::Webtoon;