Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::janki_app::JankiApp;
use eframe::NativeOptions;

mod janki_app;

fn main() {
    eframe::run_native(
        "Janki",
        NativeOptions::default(),
        Box::new(|_cc| Box::new(JankiApp::new())),
    );
}