From 3f06103a67f3be60811b8a5af8f4bdde940b415e Mon Sep 17 00:00:00 2001 From: counterweight Date: Mon, 22 Dec 2025 20:19:23 +0100 Subject: [PATCH] Fix: Remove booking import from main.py --- backend/main.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/backend/main.py b/backend/main.py index c941188..0e089c9 100644 --- a/backend/main.py +++ b/backend/main.py @@ -9,7 +9,6 @@ from database import Base, engine from routes import audit as audit_routes from routes import auth as auth_routes from routes import availability as availability_routes -from routes import booking as booking_routes from routes import exchange as exchange_routes from routes import invites as invites_routes from routes import meta as meta_routes @@ -48,7 +47,5 @@ app.include_router(meta_routes.router) # Include routers - modules with multiple routers for r in invites_routes.routers: app.include_router(r) -for r in booking_routes.routers: - app.include_router(r) for r in exchange_routes.routers: app.include_router(r)