2 stable releases
2.0.0 | Oct 21, 2022 |
---|---|
1.0.0 | Oct 21, 2022 |
#13 in #client-token
115KB
2K
SLoC
primer client, generated from the OpenAPI spec.
Usage
use primer_api::PrimerClient;
use primer_api::model::*;
#[tokio::main]
async fn main() {
let client = PrimerClient::from_env();
let response = client
.retrieve_client_side_token_client_session_get()
.client_token("your client token")
.send()
.await
.unwrap();
println!("{:#?}", response);
}
This example loads configuration from environment variables, specifically:
-
PRIMER_BASE_URL
-
PRIMER_API_KEY_AUTH
Installation
Add this to your Cargo.toml:
[dependencies]
primer-api = "0.1.0"
Documentation
You can see working examples of every API call in the examples/
directory.
Contributing
Contributions are welcome!
Library created with Libninja.
Dependencies
~15–27MB
~549K SLoC