mycelium-notifier 8.3.0+beta

Provide message adapters to the mycelium project.
Documentation
1
2
3
4
5
6
7
8
9
10
use super::{QueueConfig, SmtpConfig};

use serde::Deserialize;

#[derive(Clone, Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub(super) struct TmpConfig {
    pub(super) smtp: SmtpConfig,
    pub(super) queue: QueueConfig,
}