Auto-generated changes

This commit is contained in:
emergent-agent-e1
2026-05-06 03:53:17 +00:00
parent 39fbd407ec
commit deaad7b5d3
5 changed files with 92 additions and 3 deletions
+2 -1
View File
@@ -9,7 +9,7 @@ from auth import hash_password
from datetime import datetime
# Import route modules
from routes import auth_routes, destination_routes, special_routes, other_routes
from routes import auth_routes, destination_routes, special_routes, other_routes, download_routes
ROOT_DIR = Path(__file__).parent
load_dotenv(ROOT_DIR / '.env')
@@ -33,6 +33,7 @@ app.include_router(auth_routes.router)
app.include_router(destination_routes.router)
app.include_router(special_routes.router)
app.include_router(other_routes.router)
app.include_router(download_routes.router)
# Health check endpoint
@app.get("/api")