2025-12-24 16:59:14 +00:00
|
|
|
mod commands;
|
|
|
|
|
mod state;
|
|
|
|
|
|
|
|
|
|
use state::SessionState;
|
2025-12-24 16:29:33 +00:00
|
|
|
|
|
|
|
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
|
|
|
|
pub fn run() {
|
|
|
|
|
tauri::Builder::default()
|
|
|
|
|
.plugin(tauri_plugin_opener::init())
|
2025-12-24 16:59:14 +00:00
|
|
|
.plugin(tauri_plugin_dialog::init())
|
|
|
|
|
.manage(SessionState::default())
|
|
|
|
|
.invoke_handler(tauri::generate_handler![
|
|
|
|
|
commands::fs::open_project,
|
|
|
|
|
commands::fs::read_file,
|
|
|
|
|
commands::fs::write_file,
|
|
|
|
|
commands::fs::list_directory,
|
|
|
|
|
commands::search::search_files,
|
|
|
|
|
commands::shell::exec_shell
|
|
|
|
|
])
|
2025-12-24 16:29:33 +00:00
|
|
|
.run(tauri::generate_context!())
|
|
|
|
|
.expect("error while running tauri application");
|
|
|
|
|
}
|