summaryrefslogtreecommitdiff
path: root/src/modules/dashboard.rs
blob: acc1fb8fe9a2d06d2db374383ae1a317bf30e741 (plain)
1
2
3
4
5
6
7
8
#[derive(Serialize, Deserialize, Debug, Clone, Default)]
pub struct Dashboard {}

impl Dashboard {
    pub fn new() -> Dashboard {
        Dashboard {}
    }
}