dot4ch

dot4ch is a convenient wrapper library around 4chan's API.

This library can fetch and update:

While respecting 4chan's:

Example: Getting an image from the OP of a thread

```rust

[tokio::main]

async fn main() { let mut client = Client::new();

let board = "g";

let post_id = 81743559;

let thread = Thread::new(&mut client, board, post_id).unwrap();

let post = thread.op();
println!("{}", post.image_url().unwrap());

}

```