rename SessionDependency to DbSessionDependency

This commit is contained in:
maxDorninger
2025-03-28 15:22:36 +01:00
parent 1a558361f4
commit 11c45a9d57
6 changed files with 21 additions and 18 deletions

View File

@@ -23,5 +23,5 @@ def get_session() -> Generator[Session, Any, None]:
with Session(engine) as session:
yield session
SessionDependency = Annotated[Session, Depends(get_session)]
DbSessionDependency = Annotated[Session, Depends(get_session)]