9 lines
184 B
Rust
9 lines
184 B
Rust
pub mod antenna;
|
|
pub mod known_position;
|
|
|
|
|
|
#[derive(Debug, serde::Serialize, serde::Deserialize)]
|
|
pub struct DeviceReport {
|
|
pub data: Vec<crate::influxdb_models::BeaconMeasure>,
|
|
}
|