All checks were successful
AI Codebase Quality Review / ai-codebase-review (push) Successful in 39s
21 lines
365 B
Python
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",
|
|
]
|