just why not
All checks were successful
AI Codebase Quality Review / ai-codebase-review (push) Successful in 39s

This commit is contained in:
2026-01-07 21:19:46 +01:00
parent a1fe47cdf4
commit e8d28225e0
24 changed files with 6431 additions and 250 deletions

View File

@@ -0,0 +1,20 @@
"""Notifications Package
Provides webhook-based notifications for Slack, Discord, and other platforms.
"""
from notifications.notifier import (
DiscordNotifier,
Notifier,
NotifierFactory,
SlackNotifier,
WebhookNotifier,
)
__all__ = [
"Notifier",
"SlackNotifier",
"DiscordNotifier",
"WebhookNotifier",
"NotifierFactory",
]