This project is still a work in progress!!
A Rust proc-macro attribute HTTP Client generator from a trait. Inspired by [Retrofit] and [Refit] to bring something like them to rust.
```rust
pub trait HttpBin {
#[get::json("/anything")]
async fn get_anything(&self) -> Result
#[get::json("/anything/{name}")]
async fn getbyname(&self, name: String) -> Result
See tests for a full example