Crates.io | render-api |
lib.rs | render-api |
version | 1.1.2 |
source | src |
created_at | 2023-02-26 05:23:44.846557 |
updated_at | 2024-09-17 16:42:08.071258 |
description | Render client, generated from the OpenAPI spec. |
homepage | https://github.com/libninjacom/render-rs |
repository | https://github.com/libninjacom/render-rs |
max_upload_size | |
id | 794858 |
size | 134,122 |
Render client, generated from the OpenAPI spec.
use render_api::RenderClient;
use render_api::model::*;
#[tokio::main]
async fn main() {
let client = RenderClient::from_env();
let response = client
.list_authorized_users_and_teams()
.cursor("your cursor")
.email("your email")
.limit("your limit")
.name("your name")
.await
.unwrap();
println!("{:#?}", response);
}
This example loads configuration from environment variables, specifically:
RENDER_API_KEY_AUTH
Add this to your Cargo.toml:
[dependencies]
render_api = "0.1.0"
You can see working examples of every API call in the examples/
directory.
Contributions are welcome!
Library created with Libninja.