diff --git a/backend/main.py b/backend/main.py index 4f7b5932..a65353a4 100644 --- a/backend/main.py +++ b/backend/main.py @@ -5,7 +5,8 @@ from fastapi.exceptions import HTTPException, RequestValidationError from starlette.exceptions import HTTPException as StarletteHTTPException from config.settings import get_settings from config.database import init_db -from src.routes import auth_router, users_router, projects_router +from src.routes import auth_router, users_router +from src.routes.projects import router as projects_router settings = get_settings() diff --git a/backend/tests/__pycache__/conftest.cpython-310-pytest-7.4.3.pyc b/backend/tests/__pycache__/conftest.cpython-310-pytest-7.4.3.pyc index aa732e20..90abcdc6 100644 Binary files a/backend/tests/__pycache__/conftest.cpython-310-pytest-7.4.3.pyc and b/backend/tests/__pycache__/conftest.cpython-310-pytest-7.4.3.pyc differ