just why not
All checks were successful
AI Codebase Quality Review / ai-codebase-review (push) Successful in 39s
All checks were successful
AI Codebase Quality Review / ai-codebase-review (push) Successful in 39s
This commit is contained in:
20
tools/ai-review/notifications/__init__.py
Normal file
20
tools/ai-review/notifications/__init__.py
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user