Implements basic gui app.

This commit is contained in:
2026-08-23 19:06:34 -07:00
parent 4c5db3f950
commit ae84a31ed6
8 changed files with 1266 additions and 146 deletions

View File

@@ -1,14 +1,20 @@
// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
#[tauri::command]
fn greet(name: &str) -> String {
format!("Hello, {}! You've been greeted from Rust!", name)
}
pub mod commands;
#[cfg_attr(mobile, tauri::mobile_entry_point)]
pub fn run() {
tauri::Builder::default()
.plugin(tauri_plugin_opener::init())
.invoke_handler(tauri::generate_handler![greet])
.invoke_handler(tauri::generate_handler![
commands::list_accounts,
commands::get_default_account,
commands::set_default_account,
commands::delete_account,
commands::initiate_login_flow,
commands::poll_login_flow,
commands::manual_login,
commands::select_files,
commands::upload_file
])
.run(tauri::generate_context!())
.expect("error while running tauri application");
}