Adds gotify notifications

This commit is contained in:
2025-10-09 14:25:08 +02:00
parent caf98654ce
commit 0717f1694f
6 changed files with 909 additions and 29 deletions
+8
View File
@@ -0,0 +1,8 @@
use serde::Serialize;
#[derive(Serialize)]
pub struct Alert {
pub title: String,
pub message: String,
pub priority: i32,
}