mirror of
https://github.com/tonytins/amtkstat.git
synced 2025-03-31 01:36:41 +00:00
- Now possible to click links that launch the browser from the backend - Version scheme change to account for different methods with desktop applications
15 lines
495 B
Rust
15 lines
495 B
Rust
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
use webbrowser;
|
|
|
|
#[tauri::command]
|
|
fn open_browser(address: &str) {
|
|
webbrowser::open(address).expect("Failed to open defualt browser.");
|
|
}
|
|
|
|
fn main() {
|
|
tauri::Builder::default()
|
|
.invoke_handler(tauri::generate_handler![open_browser])
|
|
.run(tauri::generate_context!())
|
|
.expect("error while running tauri application");
|
|
}
|