6 lines
123 B
Python
6 lines
123 B
Python
from .base import RepositoryBase
|
|
from ..domain import Product
|
|
|
|
|
|
class ProductRepository(RepositoryBase[Product]):
|
|
pass
|