Skip to main content

aster/notifications/
mod.rs

1//! 通知系统模块
2//!
3//! 提供桌面通知和终端通知功能
4
5mod desktop;
6mod manager;
7mod types;
8
9pub use desktop::{bell, play_sound, send_desktop_notification};
10pub use manager::NotificationManager;
11pub use types::{
12    Notification, NotificationAction, NotificationConfig, NotificationKind, NotificationType,
13};