11 lines
216 B
Python
11 lines
216 B
Python
"""""
|
|
GTFS data pipeline sensors.
|
|
"""
|
|
from .gtfs_static import *
|
|
from .gtfs_realtime import *
|
|
|
|
__all__ = [
|
|
"gtfs_static_hourly_sensor",
|
|
"gtfs_static_partition_update_sensor",
|
|
"gtfs_rt_vehicles_sensor",
|
|
]
|