feat: initial commit - unified FGTools from static, weather, mattermost-noti
This commit is contained in:
15
services/notification/__init__.py
Normal file
15
services/notification/__init__.py
Normal file
@ -0,0 +1,15 @@
|
||||
# ===================================================================
|
||||
# services/notification/__init__.py
|
||||
# 알림 서비스 패키지 초기화
|
||||
# ===================================================================
|
||||
# Notion 웹훅 처리 및 다양한 알림 서비스를 제공합니다.
|
||||
# ===================================================================
|
||||
|
||||
from .notion import NotionWebhookHandler, get_page_details
|
||||
from .mattermost import MattermostNotifier
|
||||
|
||||
__all__ = [
|
||||
'NotionWebhookHandler',
|
||||
'get_page_details',
|
||||
'MattermostNotifier',
|
||||
]
|
||||
Reference in New Issue
Block a user