notify-me 0.2.0

Send notifications to email or communication software, such as WeChat.
Documentation
1
2
3
4
5
6
7
8
use anyhow::Result;

pub mod email_notifier;
pub mod wechat_notifier;

pub trait Notify {
    fn notify(&self, title: &str, content: &str) -> Result<()>;
}