12 lines
224 B
Python
12 lines
224 B
Python
|
|
"""
|
||
|
|
Data Service Repositories
|
||
|
|
Repository implementations for data service
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .base import DataBaseRepository
|
||
|
|
from .sales_repository import SalesRepository
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"DataBaseRepository",
|
||
|
|
"SalesRepository"
|
||
|
|
]
|