Add example project

This commit is contained in:
nab138
2025-12-17 12:13:40 -05:00
parent 01d3872181
commit 4f2fd8c8c2
7 changed files with 30 additions and 6 deletions

View File

View File

@@ -1,6 +1,12 @@
use idevice::plist;
use plist::Value;
pub mod auth;
pub fn test() -> Value {
plist!("value")
use idevice::{plist, pretty_print_plist};
pub fn test() -> () {
println!(
"{}",
pretty_print_plist(&plist!({
"code": "hello"
}))
);
}