mirror of
https://github.com/zvx-echo6/meshai.git
synced 2026-06-11 17:34:44 +02:00
- Test always shows current data for the rule's feed categories - RF rules show live SFI/Kp/R/S/G and ducting conditions - Weather rules show active NWS alert count and headlines - Fire rules show active fire/hotspot count - Stream rules show current gauge readings - Mesh rules show current health score and infra status - Send Current Conditions delivers live snapshot through channel - Send Test Alert delivers example through channel - Send Live Alert available when real conditions match Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
6 lines
246 B
Python
6 lines
246 B
Python
"""Notification system for MeshAI alerts."""
|
|
|
|
from .categories import ALERT_CATEGORIES, get_category, list_categories
|
|
from .router import NotificationRouter
|
|
|
|
__all__ = ["ALERT_CATEGORIES", "get_category", "list_categories", "NotificationRouter"]
|