GitHub Contributors Stars Build Status Downloads Crates.io

```rust use petstore::PetStoreClient;

[tokio::main]

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.

Documentation

Contributing

Contributions are welcome!