mobile app web view

This commit is contained in:
2026-03-10 00:40:39 +07:00
parent 6f4dd88a8e
commit c9dfc681e8
45 changed files with 6539 additions and 135 deletions
+10
View File
@@ -0,0 +1,10 @@
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
// 2. Только после него идут импорты
use tauri;
fn main() {
tauri::Builder::default()
.run(tauri::generate_context!())
.expect("error while running tauri application");
}