primer-api 1.0.0

primer client, generated from the OpenAPI spec.
Documentation

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.