Fundamentum's HTTP(API) SDK
To get started with the SDK, you'll need to install Rust. You can follow the instructions on the official Rust website: Install Rust.
```rust use fundamentumsdkapi::client::{config::Configuration, sdk_api::SdkApi};
async fn main() { let apiauthorizationtoken = "apitoken"; let tokenfile_string = "{ placeholder: \"\" }";
let token_file: TokenFile =
serde_json::from_str(&token_file_string).expect("Wrong token file");
let config = Configuration {
api_token: Some(api_authorization_token),
token_file: Some(token_file),
..Configuration::default()
};
let api = SdkApi::new(config);
api.status().await.unwrap();
} ```
Please see the development setup guide.
Licensed under Apache License, Version 2.0 LICENSE