1pub mod nbr_sensors_setup;
23/// This trait represents a discovery strategy for the platform
4pub trait Discovery {
5/// Discovers the neighbours of the device
6 ///
7 /// # Returns
8 /// A vector containing the ids of the neighbours
9fn discover_neighbors(&self) -> Vec<i32>;
10}