mirror of
https://github.com/linsa-io/linsa.git
synced 2026-01-15 16:23:27 +01:00
11 lines
305 B
Rust
11 lines
305 B
Rust
mod browser;
|
|
|
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
|
pub fn run() {
|
|
tauri::Builder::default()
|
|
.invoke_handler(tauri::generate_handler![browser::get_current_browser_url])
|
|
.plugin(tauri_plugin_fs::init())
|
|
.run(tauri::generate_context!())
|
|
.expect("error while running tauri application");
|
|
}
|