- Tauri v2 with SQLite plugin and full database schema - React with react-router-dom, i18n (FR/EN), recharts, lucide-react - TailwindCSS v4 with custom Bleu/Creme/Terracotta palette - App shell with sidebar navigation (7 pages) - Dashboard with summary cards, page stubs for all sections - Default category configuration (10 top-level categories) - TypeScript interfaces matching SQLite schema Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
6 lines
187 B
Rust
6 lines
187 B
Rust
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
fn main() {
|
|
simpl_result_lib::run()
|
|
}
|