paladin-notifications
Notification delivery adapters for the Paladin framework.
Purpose
paladin-notifications provides adapter implementations for email, push, and system notification delivery.
Key Modules
email_notification_adapter: Email notification integration.push_notification_adapter: Push-style message delivery integration.system_notification_adapter: System channel notification integration.
Usage
use email_notification_adapter;
use push_notification_adapter;
// Select an adapter module and instantiate via the corresponding constructor.
let _email_module = ;
let _push_module = ;
Feature Flags
email: Enable email adapter dependencies.push: Enable push adapter dependencies.system: Enable system notification adapter support.