use api_builder::{ReqwestAsyncClient, RestClient, api_rest_client};
#[derive(Debug, thiserror::Error)]
pub enum APIError {}
#[derive(ReqwestAsyncClient)]
pub struct Client {
async_client: reqwest::Client,
}
#[api_rest_client(error = APIError, base = "\"https://example.com/v1/\"")]
impl RestClient for Client {}
fn main() {}