this repo has no description
1mod service;
2
3pub use tranquil_comms::{
4 CommsChannel, CommsSender, CommsStatus, CommsType, DEFAULT_LOCALE, DiscordSender, EmailSender,
5 NewComms, NotificationStrings, QueuedComms, SendError, SignalSender, TelegramSender,
6 VALID_LOCALES, format_message, get_strings, is_valid_phone_number, mime_encode_header,
7 sanitize_header_value, validate_locale,
8};
9
10pub use service::{
11 CommsService, channel_display_name, enqueue_2fa_code, enqueue_account_deletion, enqueue_comms,
12 enqueue_email_update, enqueue_email_update_token, enqueue_migration_verification,
13 enqueue_passkey_recovery, enqueue_password_reset, enqueue_plc_operation,
14 enqueue_signup_verification, enqueue_welcome, queue_legacy_login_notification,
15};