9 lines
315 B
Python
9 lines
315 B
Python
# ===================================================================
|
|
# apps/weather_api/__init__.py
|
|
# 날씨 API 앱 패키지 초기화
|
|
# ===================================================================
|
|
|
|
from .app import create_app, weather_bp, run_server
|
|
|
|
__all__ = ['create_app', 'weather_bp', 'run_server']
|