Include repo check

This commit is contained in:
asonix 2021-06-05 11:17:29 -05:00
parent 1c5c9199d4
commit da2e02b92e

View file

@ -13,6 +13,10 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
if let Ok(author) = get_prop(&mut port, b"author") {
println!("author success: {}", String::from_utf8_lossy(&author));
}
if let Ok(repo) = get_prop(&mut port, b"repo") {
println!("repo success: {}", String::from_utf8_lossy(&repo));
}
}
}