From c36264c5cd88f79e193710932ca11b1f7f1d60d7 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Sat, 5 Nov 2022 15:28:25 -0700 Subject: remove tauri-gui folder (for now) --- adenosine-tauri-gui/src/main.rs | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 adenosine-tauri-gui/src/main.rs (limited to 'adenosine-tauri-gui/src') diff --git a/adenosine-tauri-gui/src/main.rs b/adenosine-tauri-gui/src/main.rs deleted file mode 100644 index d0ef258..0000000 --- a/adenosine-tauri-gui/src/main.rs +++ /dev/null @@ -1,16 +0,0 @@ -#![cfg_attr( - all(not(debug_assertions), target_os = "windows"), - windows_subsystem = "windows" -)] - -#[tauri::command] -fn greet(name: &str) -> String { - format!("Hello, {}!", name) -} - -fn main() { - tauri::Builder::default() - .invoke_handler(tauri::generate_handler![greet]) - .run(tauri::generate_context!()) - .expect("error while running tauri application"); -} -- cgit v1.2.3