Install the dependencies
cargo
Create the file .env
in the repository source using the .env_example
```rust use teeskins::api::TeeskinsApi; use std::env; use dotenv::dotenv;
fn main() { dotenv().ok();
let host = env::var("HOST")
.unwrap_or("https://localhost".to_string());
let api = TeeskinsApi::new(
"".to_string(),
host
);
let asset = api.get_profile("nagi01".to_string());
println!("{}", match asset {
Some(v) => v.user.name,
None => String::from("Name has not been found")
}
)
} ```
Run cargo test
The tests are using the following environment variables:
- HOST
- DISCORD_TOKEN