feat: massive overhaul to manage costs
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 59s
CI / Lint & Test (pull_request) Successful in 16m14s
CI / Build Linux (pull_request) Successful in 19m13s
CI / Build Windows (cross-compile) (pull_request) Successful in 29m56s

This commit is contained in:
2026-02-04 19:11:41 -08:00
parent daedbfd865
commit 6aef8c7f41
30 changed files with 4024 additions and 103 deletions
+10
View File
@@ -3,6 +3,7 @@ mod bridge_manager;
mod clipboard;
mod commands;
mod config;
mod cost_tracking;
mod git;
mod notifications;
mod quick_actions;
@@ -10,6 +11,7 @@ mod sessions;
mod snippets;
mod stats;
mod temp_manager;
mod tool_cache;
mod tray;
mod types;
mod vbs_notification;
@@ -159,6 +161,14 @@ pub fn run() {
delete_file,
delete_directory,
rename_path,
// Cost tracking commands
get_cost_summary,
get_cost_alerts,
set_cost_alert_thresholds,
export_cost_csv,
get_today_cost,
get_week_cost,
get_month_cost,
])
.run(tauri::generate_context!())
.expect("error while running tauri application");