| Crates.io | artifacts-rs |
| lib.rs | artifacts-rs |
| version | 1.4.2 |
| created_at | 2025-07-19 05:36:28.625398+00 |
| updated_at | 2025-07-25 07:08:55.715333+00 |
| description | Rust client for Artifacts |
| homepage | |
| repository | https://github.com/Enochen/artifacts-rs |
| max_upload_size | |
| id | 1759935 |
| size | 703,687 |
A Rust client for Artifacts, an API-based sandbox MMO.
Powered by openapi-generator.
use artifacts::{
apis::{configuration::Configuration, my_account_api},
models::BankResponseSchema,
};
#[tokio::main]
async fn main() {
let mut config = Configuration::new();
config.bearer_access_token = Some("YOUR_TOKEN".to_owned());
match my_account_api::get_bank_details(&config).await {
Ok(BankResponseSchema { data }) => println!("{:?}", data),
Err(err) => panic!("{}", err),
}
}