gardesk/garnotify / 38536ed

Browse files

notification: add module exports

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
38536edb8800b5583958c1a60cacd3072b4027c9
Parents
9b7d4da
Tree
953cef8

1 changed file

StatusFile+-
A garnotify/src/notification/mod.rs 9 0
garnotify/src/notification/mod.rsadded
@@ -0,0 +1,9 @@
1
+//! Notification types, storage, and history management
2
+
3
+mod history;
4
+pub mod store;
5
+mod types;
6
+
7
+pub use history::History;
8
+pub use store::{new_shared_store, NotificationEvent, SharedNotificationStore};
9
+pub use types::{Action, CloseReason, Hints, Notification, Urgency, UrgencyTimeouts};