Fix: Remove booking import from main.py

This commit is contained in:
counterweight 2025-12-22 20:19:23 +01:00
parent bbd9fae763
commit 3f06103a67
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C

View file

@ -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)