This commit is contained in:
Robin Appelman 2026-03-26 23:44:23 +01:00
commit fb383652c8
22 changed files with 3161 additions and 3071 deletions

View file

@ -3,7 +3,7 @@ use ugc_scraper::{Result, SteamID, UgcClient};
#[tokio::main]
async fn main() -> Result<()> {
let client = UgcClient::new();
let id = SteamID::from(76561198024494988);
let id = SteamID::from_steam64(76561198024494988).unwrap();
let player = client.player(id).await?;
println!("{}", player.name);
for team in player.teams {