2026-01-13 07:57:47 -05:00
|
|
|
mod device_finders;
|
|
|
|
|
|
2026-01-13 15:48:17 -05:00
|
|
|
#[tokio::main]
|
|
|
|
|
async fn main() {
|
2026-01-13 19:26:28 -05:00
|
|
|
let devices = device_finders::arp::find("wlp1s0").await;
|
2026-01-13 07:57:47 -05:00
|
|
|
|
|
|
|
|
for device in devices.iter() {
|
|
|
|
|
println!("{}", device);
|
|
|
|
|
}
|
|
|
|
|
}
|