cleanup & polish

This commit is contained in:
Jonas Kruckenberg 2022-11-17 18:13:39 +01:00
parent ee68fe6b5b
commit d5fa1c0397
15 changed files with 657 additions and 470 deletions

View file

@ -19,10 +19,10 @@ pub async fn request_permission() -> anyhow::Result<()> {
pub async fn show_notification() -> anyhow::Result<()> {
let mut n = notification::Notification::default();
n.set_title("TAURI");
n.set_body("Tauri is awesome!");
n.set_title("TAURI");
n.set_body("Tauri is awesome!");
n.show()?;
Ok(())
}
}