Files
bakery-ia/services/sales/app/repositories/__init__.py

6 lines
194 B
Python
Raw Normal View History

2025-08-12 18:17:30 +02:00
# services/sales/app/repositories/__init__.py
from .sales_repository import SalesRepository
from .product_repository import ProductRepository
__all__ = ["SalesRepository", "ProductRepository"]