add login with oskeychain

This commit is contained in:
Christoph Brandau
2026-06-29 19:13:41 +02:00
parent 8d56c3f39f
commit 4aa9a537f0
11 changed files with 1234 additions and 40 deletions
+10 -6
View File
@@ -4,11 +4,11 @@ mod git;
use git::{
cancel_code_search, checkout_branch, commit, compare_commits, compare_file_to_head,
diff_file_against_working_tree, get_status, list_branches, list_commits, list_file_history,
list_repository_files, merge_branch, open_repository, pull, push, read_conflict,
resolve_conflict, resolve_conflict_side, restore_file_from_commit, restore_files,
restore_to_commit, search_code_introductions, stage_files, unstage_files,
SearchCancellationState,
cred_delete, cred_load, cred_save, diff_file_against_working_tree, get_remote_url, get_status,
list_branches, list_commits, list_file_history, list_repository_files, merge_branch,
open_repository, pull, push, read_conflict, resolve_conflict, resolve_conflict_side,
restore_file_from_commit, restore_files, restore_to_commit, search_code_introductions,
stage_files, unstage_files, SearchCancellationState,
};
fn main() {
@@ -39,7 +39,11 @@ fn main() {
cancel_code_search,
read_conflict,
resolve_conflict,
resolve_conflict_side
resolve_conflict_side,
get_remote_url,
cred_load,
cred_save,
cred_delete
])
.run(tauri::generate_context!())
.expect("error while running tauri application");