Allow for domain lookups for get_all

This commit is contained in:
Jackson Coxson
2025-07-03 09:43:00 -06:00
parent 4059e47a6e
commit 71a223f669
4 changed files with 148 additions and 8 deletions

View File

@@ -82,5 +82,5 @@ async fn main() {
.await
);
println!("{:?}", lockdown_client.idevice.get_type().await.unwrap());
println!("{:#?}", lockdown_client.get_all_values().await);
println!("{:#?}", lockdown_client.get_all_values(None).await);
}