mirror of
https://github.com/rzuasti/oott.git
synced 2026-07-08 19:21:54 +02:00
11 lines
191 B
Rust
11 lines
191 B
Rust
mod device_finders;
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
let devices = device_finders::arp::find("wlp1s0").await;
|
|
|
|
for device in devices.iter() {
|
|
println!("{}", device);
|
|
}
|
|
}
|