this repo has no description
1mod sender;
2mod service;
3mod types;
4
5pub use sender::{EmailSender, NotificationSender};
6pub use service::{
7 enqueue_account_deletion, enqueue_email_update, enqueue_email_verification,
8 enqueue_notification, enqueue_password_reset, enqueue_plc_operation, enqueue_welcome,
9 NotificationService,
10};
11pub use types::{
12 NewNotification, NotificationChannel, NotificationStatus, NotificationType, QueuedNotification,
13};