- Создана структура marketplaces/ для маркетплейсов - Модели: MarketplaceIntegration, WooCommerceIntegration, RecommerceIntegration - Сервисы: MarketplaceService, WooCommerceService, RecommerceService - RecommerceService содержит методы для работы с API: - test_connection(), sync(), fetch_products() - push_product(), update_stock(), update_price() - IntegrationConfig обновлён с новой интеграцией Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
264 B
Python
14 lines
264 B
Python
from .base import BaseIntegrationService
|
|
from .marketplaces import (
|
|
MarketplaceService,
|
|
WooCommerceService,
|
|
RecommerceService,
|
|
)
|
|
|
|
__all__ = [
|
|
'BaseIntegrationService',
|
|
'MarketplaceService',
|
|
'WooCommerceService',
|
|
'RecommerceService',
|
|
]
|