notify_me/notifier/
mod.rs

1use anyhow::Result;
2
3pub mod email_notifier;
4pub mod wechat_notifier;
5
6pub trait Notify {
7    fn notify(&self, title: &str, content: &str) -> Result<()>;
8}