34 lines
827 B
Rust
34 lines
827 B
Rust
#![cfg_attr(
|
|
all(not(debug_assertions), target_os = "windows"),
|
|
windows_subsystem = "windows"
|
|
)]
|
|
|
|
use commands::register_command_handlers;
|
|
use state::register_managed_state;
|
|
use tauri::{Builder as TauriBuilder, RunEvent};
|
|
|
|
mod commands;
|
|
mod error;
|
|
mod prelude;
|
|
mod state;
|
|
|
|
fn main() {
|
|
// App builder
|
|
let app = TauriBuilder::default().plugin(tauri_plugin_window_state::Builder::default().build());
|
|
|
|
// Register app commands
|
|
let app = register_command_handlers(app);
|
|
|
|
// Register app managed state
|
|
let app = register_managed_state(app);
|
|
|
|
// Run the app
|
|
app.build(tauri::generate_context!())
|
|
.expect("error while running tauri application")
|
|
.run(|_, e| {
|
|
if matches!(e, RunEvent::Ready) {
|
|
println!("Window is ready");
|
|
}
|
|
});
|
|
}
|