6 lines
194 B
Python
6 lines
194 B
Python
|
|
# services/sales/app/repositories/__init__.py
|
||
|
|
|
||
|
|
from .sales_repository import SalesRepository
|
||
|
|
from .product_repository import ProductRepository
|
||
|
|
|
||
|
|
__all__ = ["SalesRepository", "ProductRepository"]
|