7 lines
176 B
Python
7 lines
176 B
Python
from sqlalchemy.ext.asyncio import AsyncSession
|
|
|
|
|
|
class ProjectsRepository:
|
|
def __init__(self, db: AsyncSession):
|
|
self.projects_repository = ProjectsRepository(db)
|