feat: initial commit - unified FGTools from static, weather, mattermost-noti

This commit is contained in:
2025-12-31 09:56:37 +09:00
commit 4ff5dba4b1
29 changed files with 5786 additions and 0 deletions

View 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',
]