summaryrefslogtreecommitdiff
path: root/WebInterface/wasm/asm-paint/src/app.rs
blob: d5d0e45ccacd5e1b7e79a1fd85f543660e71857f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::site::Site;

pub struct App {
    site: Site,
}

impl App {
    pub fn new() -> Option<Self> {
        Some(Self {
            site: Site::from_current()?,
        })
    }

    pub fn run(&self) {
    }
}