from .base import RepositoryBase from ..domain import Product class ProductRepository(RepositoryBase[Product]): pass