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

17
services/__init__.py Normal file
View File

@ -0,0 +1,17 @@
# ===================================================================
# services/__init__.py
# FGTools 서비스 패키지 초기화
# ===================================================================
# 도메인별 서비스 모듈들을 제공합니다:
# - weather: 기상 데이터 서비스
# - pos: POS 데이터 서비스
# - analytics: 분석 서비스 (GA4, 대기질, 예측)
# - notification: 알림 서비스 (Notion, Mattermost)
# ===================================================================
__all__ = [
'weather',
'pos',
'analytics',
'notification',
]