diff options
| author | Solstice <solstice@local> | 2026-06-09 00:06:42 -0700 |
|---|---|---|
| committer | Solstice <solstice@local> | 2026-06-09 00:06:42 -0700 |
| commit | 59708192eb000770ede58f21e5a397c65875eb3b (patch) | |
| tree | 15c270cc1bb7e62094f45af0a91aa335c4e51ed2 /src-tauri/src/lib.rs | |
chore: initial project scaffolding
- Tauri v2 + React + TypeScript (Vite)
- Tailwind CSS v4 via @tailwindcss/vite
- Zustand for state management
- Design system: tokens.css, fonts, icons
- tauri.conf.json: solstice, 900x640, min 700x520
- global.css imports tokens and Tailwind
Diffstat (limited to 'src-tauri/src/lib.rs')
| -rw-r--r-- | src-tauri/src/lib.rs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs new file mode 100644 index 0000000..4a277ef --- /dev/null +++ b/src-tauri/src/lib.rs @@ -0,0 +1,14 @@ +// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/ +#[tauri::command] +fn greet(name: &str) -> String { + format!("Hello, {}! You've been greeted from Rust!", name) +} + +#[cfg_attr(mobile, tauri::mobile_entry_point)] +pub fn run() { + tauri::Builder::default() + .plugin(tauri_plugin_opener::init()) + .invoke_handler(tauri::generate_handler![greet]) + .run(tauri::generate_context!()) + .expect("error while running tauri application"); +} |
