# models/database/marketplace_product.py """ Legacy location for marketplace product model. MIGRATED: All models have been moved to app.modules.marketplace.models.marketplace_product. New location: from app.modules.marketplace.models import ( MarketplaceProduct, ProductType, DigitalDeliveryMethod, ) This file re-exports from the new location for backward compatibility. """ # Re-export everything from the new canonical location from app.modules.marketplace.models.marketplace_product import ( MarketplaceProduct, ProductType, DigitalDeliveryMethod, ) __all__ = [ "MarketplaceProduct", "ProductType", "DigitalDeliveryMethod", ]