Skip to content

Commit 7a0f860

Browse files
committed
minor changes
1 parent 9e48446 commit 7a0f860

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ gunicorn = "^23.0.0"
1919
pydantic-settings = "^2.10.1"
2020
pydantic = {extras = ["email"], version = "^2.11.7"}
2121
asyncpg = "^0.30.0"
22-
passlib = {extras = ["argon2"], version = "^1.7.4"}
23-
argon2-cffi = "^25.1.0"
2422
sqlalchemy-utils = "^0.41.2"
2523

2624
[tool.poetry.group.dev.dependencies]

src/app/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from fastapi import FastAPI
77

8-
from app.api.auth import router as auth_router
8+
99
from app.api.health_check import router as health_router
1010
from app.config.settings import settings
1111
from app.db.init_db import close_engine, init_models
@@ -31,4 +31,4 @@ async def lifespan(_app: FastAPI) -> AsyncGenerator[None, None]:
3131
)
3232

3333
app.include_router(health_router)
34-
app.include_router(auth_router)
34+

0 commit comments

Comments
 (0)