1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! # Dvach API
//!
//! Library for working with 2ch.hk API
//! 
//! # Example
//! Methods
//! ```
//! let threads: Vec<CatalogThread> = dvach::methods::Fetch::catalog(board);
//! let thread: Thread = dvach::methods::Fetch::thread(board, thread);
//! ```

extern crate reqwest;

extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;

// Methods for fetching and requests
pub mod methods;

// All necessary structures
pub mod structs;