initialize Tauri backend with SQLite database

This commit is contained in:
2026-02-17 18:03:12 +02:00
parent 77854ebe6a
commit 55f77a03af
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();
}