Files
openrabbit/tools/ai-review/notifications/__init__.py
latte e8d28225e0
All checks were successful
AI Codebase Quality Review / ai-codebase-review (push) Successful in 39s
just why not
2026-01-07 21:19:46 +01:00

21 lines
365 B
Python

"""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",
]