Bump client, generated from the OpenAPI spec.
```rust use bumpapi::BumpClient; use bumpapi::model::*;
async fn main() { let client = BumpClient::fromenv(); let response = client .postdiffs() .url("your url") .previousurl("your previous url") .previousdefinition("your previous definition") .previousreferences( vec![ Reference { location : Some("your location".toowned()), content : Some("your content".toowned()) } ], ) .definition("your definition") .references( vec![ Reference { location : Some("your location".toowned()), content : Some("your content".toowned()) } ], ) .expiresat("your expires at") .send() .await .unwrap(); println!("{:#?}", response); }
```
This example loads configuration from environment variables, specifically:
BUMP_BASE_URL
BUMP_AUTHORIZATION_TOKEN
BUMP_BASIC_TOKEN
Add this to your Cargo.toml:
toml
[dependencies]
bump-api = "0.1.0"
You can see working examples of every API call in the examples/
directory.
Contributions are welcome!
Library created with Libninja.