pub mod commands; pub mod db; pub mod sidecar; pub mod state; use commands::export::export_transcript; use commands::project::{create_project, get_project, list_projects}; use commands::transcribe::{run_pipeline, transcribe_file}; #[cfg_attr(mobile, tauri::mobile_entry_point)] pub fn run() { tauri::Builder::default() .plugin(tauri_plugin_opener::init()) .plugin(tauri_plugin_dialog::init()) .invoke_handler(tauri::generate_handler![ create_project, get_project, list_projects, transcribe_file, run_pipeline, export_transcript, ]) .run(tauri::generate_context!()) .expect("error while running tauri application"); }