# models/database/letzshop.py """ Legacy location for Letzshop models. MIGRATED: Models have been moved to app.modules.marketplace.models.letzshop. New location: from app.modules.marketplace.models import ( VendorLetzshopCredentials, LetzshopFulfillmentQueue, LetzshopVendorCache, LetzshopSyncLog, LetzshopHistoricalImportJob, ) This file re-exports from the new location for backward compatibility. """ # Re-export from the new canonical location from app.modules.marketplace.models.letzshop import ( VendorLetzshopCredentials, LetzshopFulfillmentQueue, LetzshopVendorCache, LetzshopSyncLog, LetzshopHistoricalImportJob, ) __all__ = [ "VendorLetzshopCredentials", "LetzshopFulfillmentQueue", "LetzshopVendorCache", "LetzshopSyncLog", "LetzshopHistoricalImportJob", ]