aboutsummaryrefslogtreecommitdiffstats
path: root/adenosine-tauri-gui/src
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-11-05 15:28:25 -0700
committerBryan Newbold <bnewbold@robocracy.org>2022-11-05 15:28:25 -0700
commitc36264c5cd88f79e193710932ca11b1f7f1d60d7 (patch)
tree9ed0d972058038ae90363303152ac21ae45ded11 /adenosine-tauri-gui/src
parent0aa684b2bd048adbc02cc82cc2f61ff556efda2d (diff)
downloadadenosine-c36264c5cd88f79e193710932ca11b1f7f1d60d7.tar.gz
adenosine-c36264c5cd88f79e193710932ca11b1f7f1d60d7.zip
remove tauri-gui folder (for now)
Diffstat (limited to 'adenosine-tauri-gui/src')
-rw-r--r--adenosine-tauri-gui/src/main.rs16
1 files changed, 0 insertions, 16 deletions
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");
-}