From 5805ef77fef8b9b3a2f83a71091f83651a49dd89 Mon Sep 17 00:00:00 2001 From: Anshul Gupta Date: Mon, 15 Aug 2022 22:21:27 -0700 Subject: Adds individual_event endpoint to touchpad live Also moves Touchpad conversions into conversion.rs and into its own FromTouchpadLive & TryFromTouchpadLive traits. --- rust/scraper/src/main.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'rust/scraper/src/main.rs') diff --git a/rust/scraper/src/main.rs b/rust/scraper/src/main.rs index 80a2f8f..7d6a4a2 100644 --- a/rust/scraper/src/main.rs +++ b/rust/scraper/src/main.rs @@ -15,5 +15,8 @@ async fn main() -> Result<(), Box> { let swimmers = client.swimmers(18618).await?; println!("{:?}", swimmers); + let event = client.individual_event(18618, 1031911).await?; + println!("{:?}", event); + Ok(()) } \ No newline at end of file -- cgit v1.2.3