summaryrefslogtreecommitdiffstats
path: root/ozone-ui/src/main.rs
blob: 25ba7f38d917b6c1dc50cd60b6c24c84bda4ef53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::error::Error;

slint::slint! {
    export component HelloWorld inherits Window {

    }
}

fn main() -> Result<(), Box<dyn Error>> {
    simple_logger::SimpleLogger::new().env().init().unwrap();

    Ok(())
}