Add Rust modules: paths, jsonl, usage, watch, commands, state, settings

This commit is contained in:
megaproxy 2026-05-09 00:05:12 +01:00
parent 8abb0599f6
commit 14ffcf4bd3
9 changed files with 1226 additions and 0 deletions

6
src-tauri/src/main.rs Normal file
View file

@ -0,0 +1,6 @@
// Hide the console window in release builds. In debug we keep it for tracing logs.
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() {
claude_usage_widget_lib::run();
}