mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-06 10:02:50 +00:00
12 lines
333 B
Rust
12 lines
333 B
Rust
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
mod serial;
|
|
|
|
fn main() {
|
|
tauri::Builder::default()
|
|
.plugin(serial::init())
|
|
.run(tauri::generate_context!())
|
|
.expect("error while running tauri application");
|
|
}
|