mirror of
https://git.alemi.dev/dashboard.git
synced 2024-11-26 09:24:49 +01:00
16 lines
266 B
Rust
16 lines
266 B
Rust
|
mod app;
|
||
|
|
||
|
use app::App;
|
||
|
|
||
|
// When compiling natively:
|
||
|
#[cfg(not(target_arch = "wasm32"))]
|
||
|
fn main() {
|
||
|
let native_options = eframe::NativeOptions::default();
|
||
|
|
||
|
eframe::run_native(
|
||
|
"2b2t queue stats",
|
||
|
native_options,
|
||
|
Box::new(|cc| Box::new(App::new(cc))),
|
||
|
);
|
||
|
}
|