feat: modules, products, services, services kits

This commit is contained in:
2025-09-16 10:54:10 +04:00
parent be8052848c
commit 276626d6f7
55 changed files with 1791 additions and 34 deletions

View File

@ -3,6 +3,8 @@ from sqlalchemy.ext.asyncio import AsyncSession
class BaseRepository:
session: AsyncSession
def __init__(self, session: AsyncSession):
self.session = session