use wacht::api::analytics::fetch_recent_signups;// Fetch recent signups with default limitlet recent = fetch_recent_signups(None).await?;println!("Recent signups: {} of {} total", recent.data.len(), recent.total);for signup in recent.data { println!("User: {} ({})", signup.user_name, signup.user_email); println!(" Signed up: {}", signup.created_at); if let Some(org) = signup.organization { println!(" Organization: {}", org.name); }}// Fetch with custom limitlet top_10 = fetch_recent_signups(Some(10)).await?;println!("Showing {} of {} recent signups", top_10.data.len(), top_10.total);// Check if there are more signups than displayedif top_10.total > top_10.data.len() as u32 { println!("There are {} more signups not shown", top_10.total - top_10.data.len() as u32);}