```rust use petstore::PetStoreClient;
async fn main() { let client = PetStoreClient::new("http://localhost:5000") .withmiddleware(httpclient::middleware::RecorderMiddleware::new()); let itemget = client.listpets(100) .await .unwrap(); println!("{:#?}", itemget); } ```
Official PetStore client, generated from the OpenAPI spec.
Contributions are welcome!