diff --git a/amarillo/plugins/enhancer/services/export_router.py b/amarillo/plugins/enhancer/services/export_router.py deleted file mode 100644 index 582b64d..0000000 --- a/amarillo/plugins/enhancer/services/export_router.py +++ /dev/null @@ -1,12 +0,0 @@ -from fastapi import APIRouter, Depends -from amarillo.app.routers.agencyconf import verify_admin_api_key -from amarillo.plugins.enhancer.services.gtfs_generator import generate_gtfs - -export_router = APIRouter( - prefix="", - tags=["export"] -) - -@export_router.post("/export") -async def post_agency_conf(admin_api_key: str = Depends(verify_admin_api_key)): - generate_gtfs() \ No newline at end of file