10 lines
344 B
Python
10 lines
344 B
Python
# ================================================================
|
|
# services/data/app/external/apis/__init__.py
|
|
# ================================================================
|
|
"""
|
|
External API clients module - Scalable architecture for multiple cities
|
|
"""
|
|
|
|
from .traffic import TrafficAPIClientFactory
|
|
|
|
__all__ = ["TrafficAPIClientFactory"] |