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

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