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