1use crate::notifications::Notifier; 2 3pub mod linux; 4pub mod windows; 5 6pub trait BaseNotifier { 7 fn new(notifier: Notifier) -> Self; 8 fn notification_send(&self) -> bool; 9}