9 lines
214 B
Python
9 lines
214 B
Python
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)]
|