Files
bakery-ia/services/data/app/api/__init__.py
2025-08-08 09:08:41 +02:00

14 lines
277 B
Python

"""
Data Service API Layer
API endpoints for data operations
"""
from .sales import router as sales_router
from .traffic import router as traffic_router
from .weather import router as weather_router
__all__ = [
"sales_router",
"traffic_router",
"weather_router"
]