use e_app::net::get_interfaces; fn main() -> e_utils::Result<()>{ for iface in get_interfaces() { println!("# {iface:#?}"); } Ok(()) }