20 lines
447 B
Python
20 lines
447 B
Python
|
|
# ================================================================
|
||
|
|
# services/data/app/external/models/__init__.py
|
||
|
|
# ================================================================
|
||
|
|
"""
|
||
|
|
Madrid traffic models package
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .madrid_models import (
|
||
|
|
TrafficServiceLevel,
|
||
|
|
CongestionLevel,
|
||
|
|
MeasurementPoint,
|
||
|
|
TrafficRecord
|
||
|
|
)
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
'TrafficServiceLevel',
|
||
|
|
'CongestionLevel',
|
||
|
|
'MeasurementPoint',
|
||
|
|
'TrafficRecord'
|
||
|
|
]
|