init
This commit is contained in:
@@ -0,0 +1 @@
|
||||
mod ox_speak_app;
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -13,4 +13,5 @@ pub fn run() {
|
||||
.expect("error while running tauri application");
|
||||
}
|
||||
|
||||
mod utils;
|
||||
mod utils;
|
||||
mod app;
|
||||
Reference in New Issue
Block a user