This commit is contained in:
Robin Appelman 2025-05-30 16:55:10 +02:00
commit a561aed198
5 changed files with 866 additions and 317 deletions

View file

@ -10,7 +10,7 @@ use steam_resolve_vanity::resolve_vanity_url;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let key = dotenv::var("STEAM_API_KEY")?;
let key = dotenvy::var("STEAM_API_KEY")?;
let mut args = args();
let binary = args.next().unwrap(); // first argument is binary
@ -26,4 +26,4 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
Ok(())
}
```
```