summaryrefslogblamecommitdiffstats
path: root/src/main.rs
blob: 76b3ff7ef4485eb407f27450a626a7e144531928 (plain) (tree)
1
2
3
4
5
6
7
8







                                                                                                    
use eframe::Result;

mod template;

fn main() -> Result<()> {
  let native_options = eframe::NativeOptions::default();
  eframe::run_native("`eframe` Template", native_options, Box::new(template::TemplateApp::generate))
}