Skip to content

Commit

Permalink
Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-holzner committed Oct 1, 2024
1 parent ba232f1 commit 3cc4ea9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions backend/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from fastapi.middleware.cors import CORSMiddleware
from .database import engine
from . import models
from .routers import meetings, users, test
from .routers import meetings, users
import os

models.Base.metadata.create_all(bind=engine)
Expand Down Expand Up @@ -34,7 +34,6 @@
# Include the router with the /api prefix
app.include_router(meetings.router, tags=["meetings"])
app.include_router(users.router, tags=["users"])
app.include_router(test.router, tags=["test"])

@app.get("/", include_in_schema=False)
async def serve_index():
Expand Down

0 comments on commit 3cc4ea9

Please sign in to comment.