Fix: Remove booking import from main.py
This commit is contained in:
parent
bbd9fae763
commit
3f06103a67
1 changed files with 0 additions and 3 deletions
|
|
@ -9,7 +9,6 @@ from database import Base, engine
|
||||||
from routes import audit as audit_routes
|
from routes import audit as audit_routes
|
||||||
from routes import auth as auth_routes
|
from routes import auth as auth_routes
|
||||||
from routes import availability as availability_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 exchange as exchange_routes
|
||||||
from routes import invites as invites_routes
|
from routes import invites as invites_routes
|
||||||
from routes import meta as meta_routes
|
from routes import meta as meta_routes
|
||||||
|
|
@ -48,7 +47,5 @@ app.include_router(meta_routes.router)
|
||||||
# Include routers - modules with multiple routers
|
# Include routers - modules with multiple routers
|
||||||
for r in invites_routes.routers:
|
for r in invites_routes.routers:
|
||||||
app.include_router(r)
|
app.include_router(r)
|
||||||
for r in booking_routes.routers:
|
|
||||||
app.include_router(r)
|
|
||||||
for r in exchange_routes.routers:
|
for r in exchange_routes.routers:
|
||||||
app.include_router(r)
|
app.include_router(r)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue