16 lines
555 B
Python
16 lines
555 B
Python
# ===================================================================
|
|
# services/notification/__init__.py
|
|
# 알림 서비스 패키지 초기화
|
|
# ===================================================================
|
|
# Notion 웹훅 처리 및 다양한 알림 서비스를 제공합니다.
|
|
# ===================================================================
|
|
|
|
from .notion import NotionWebhookHandler, get_page_details
|
|
from .mattermost import MattermostNotifier
|
|
|
|
__all__ = [
|
|
'NotionWebhookHandler',
|
|
'get_page_details',
|
|
'MattermostNotifier',
|
|
]
|