1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//! # R2ch
//! 
//! The `R2ch` crate provides a simple twoch implementation
//! 
//! - Uses reqwest crate for methods
//! - Json
//! 
//! ## How to use
//! 
//! for get all boards, you can use boards_all() method.
//! 
//! ```rust
//! use r2ch::client::TwoCH;
//! 
//! let _ = TwoCH::default().boards_all();
//! ```


pub mod client;
mod json;