aboutsummaryrefslogtreecommitdiff
path: root/src/db.rs
blob: 87943caea7d597a22d2e6c590d9029d16ab20760 (plain) (blame)
1
2
3
4
5
6
7
8
use serde::Serialize;

#[derive(Serialize)]
pub struct Device {
    pub id: String,
    pub mac: String,
    pub broadcast_addr: String
}