From 7d2620f056b0e3048ef0cc2f58abe7e22d2c1a80 Mon Sep 17 00:00:00 2001 From: Francia Csaba Date: Fri, 9 Feb 2024 12:34:13 +0100 Subject: [PATCH] call configure_enhancer_services --- amarillo/plugins/gtfs_export/gtfs_generator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/amarillo/plugins/gtfs_export/gtfs_generator.py b/amarillo/plugins/gtfs_export/gtfs_generator.py index 456088d..d9526e2 100644 --- a/amarillo/plugins/gtfs_export/gtfs_generator.py +++ b/amarillo/plugins/gtfs_export/gtfs_generator.py @@ -5,6 +5,7 @@ from amarillo.plugins.gtfs_export.gtfs_export import GtfsExport, GtfsFeedInfo, G from amarillo.plugins.gtfs_export.gtfs import GtfsRtProducer from amarillo.utils.container import container from amarillo.plugins.gtfs_export.router import router +from amarillo.plugins.enhancer.configuration import configure_enhancer_services from glob import glob import json import schedule @@ -73,5 +74,6 @@ def start_schedule(): job_thread.start() def setup(app : FastAPI): + configure_enhancer_services() app.include_router(router) start_schedule() \ No newline at end of file