Removed redundant stuff

This commit is contained in:
Hannah dagemark 2026-08-06 22:56:13 +02:00
commit f5b274a678
5 changed files with 1 additions and 43 deletions

View file

@ -4,7 +4,7 @@ from fastapi import FastAPI
from app.config import settings
from app.database import create_database
from app.routers import example_route, project_route
from app.routers import project_route
@asynccontextmanager
@ -22,6 +22,4 @@ app = FastAPI(
)
app.include_router(example_route.router)
app.include_router(project_route.router)