1
2
3
4
5
6
7
8
9
use crate::notifications::Notifier;

pub mod linux;
pub mod windows;

pub trait BaseNotifier {
    fn new(notifier: Notifier) -> Self;
    fn notification_send(&self) -> bool;
}