alert2muc/src/apprise_notify.rs

11 lines
248 B
Rust

use askama::Template;
use serde::Deserialize;
#[derive(Debug, Clone, Deserialize, Template)]
#[template(path="apprise_notify.txt", escape="none")]
pub struct Notification {
pub title: String,
pub message: String,
pub r#type: String,
}