feat(database/repositories/product_repository.py): Added product repository

This commit is contained in:
Kita Trofimov
2025-10-26 15:04:47 +03:00
parent 2f6782ab9d
commit fa00e27015
3 changed files with 141 additions and 2 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
from .user_repository import UserRepository
from .robot_repository import RobotRepository
from .product_repository import ProductRepository
__all__ = ['UserRepository', 'RobotRepository']
__all__ = ['UserRepository', 'RobotRepository', 'ProductRepository']