Files
fgtools/apps/__init__.py

16 lines
522 B
Python

# ===================================================================
# apps/__init__.py
# FGTools 애플리케이션 패키지 초기화
# ===================================================================
# 웹 애플리케이션 엔드포인트들을 제공합니다:
# - dashboard: 정적 데이터 대시보드
# - weather_api: 날씨 API 서버
# - webhook: 웹훅 수신 서버
# ===================================================================
__all__ = [
'dashboard',
'weather_api',
'webhook',
]