1 2 3 4 5 6 7
use std::net::IpAddr; pub mod oci; pub trait ListNeighbors { async fn list_neighbors(&self) -> Result<Vec<IpAddr>, anyhow::Error>; }