feat: initialize Tauri backend with SQLite database

This commit is contained in:
Your Name
2026-02-17 18:03:12 +02:00
parent 051de9604b
commit ce6c9c23b9
14 changed files with 708 additions and 0 deletions

8
src-tauri/src/main.rs Normal file
View File

@@ -0,0 +1,8 @@
#![cfg_attr(
all(not(debug_assertions), target_os = "windows"),
windows_subsystem = "windows"
)]
fn main() {
local_time_tracker_lib::run();
}