Skip to content

Instantly share code, notes, and snippets.

View AshConnolly's full-sized avatar
🚀

Ash Connolly AshConnolly

🚀
View GitHub Profile
@AshConnolly
AshConnolly / main.rs
Created December 13, 2022 14:48 — forked from rikschennink/main.rs
Tauri MacOS tray app
#![cfg_attr(
all(not(debug_assertions), target_os = "windows"),
windows_subsystem = "windows"
)]
// Learn more about Tauri commands at https://tauri.app/v1/guides/features/command
#[tauri::command]
fn sync(name: &str) -> String {
format!("Hello, {}! You've been greeted from Rust!", name)