This commit is contained in:
2026-01-18 18:49:04 +01:00
parent e7ce02f799
commit faba654e56
15 changed files with 118 additions and 30 deletions

1
src-tauri/src/app/mod.rs Normal file
View File

@@ -0,0 +1 @@
mod ox_speak_app;

View File

@@ -0,0 +1,14 @@
use tauri::AppHandle;
pub struct OxSpeakApp {
tauri_handle: AppHandle
}
impl OxSpeakApp {
pub async fn new(tauri_handle: AppHandle) -> Self {
Self {
tauri_handle
}
}
}

View File

View File

View File

View File

@@ -13,4 +13,5 @@ pub fn run() {
.expect("error while running tauri application");
}
mod utils;
mod utils;
mod app;

View File

View File

View File

View File