Spaces:
Sleeping
Sleeping
File size: 227 Bytes
224e40f | 1 2 3 4 5 6 7 8 | from typing import Annotated
from fastapi import Depends
from sqlalchemy.ext.asyncio import AsyncSession
from workout_api.configs.database import get_session
DatabaseDependency = Annotated[AsyncSession, Depends(get_session)] |