from typing import Annotated from fastapi import Depends from sqlalchemy.ext.asyncio import AsyncSession from backend.session import get_session SessionDependency = Annotated[AsyncSession, Depends(get_session)]