webtoon 0.9.0

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

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

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