Move actual code implementations into module directories: - orders: 5 services, 4 models, order/invoice schemas - inventory: 3 services, 2 models, 30+ schemas - customers: 3 services, 2 models, customer schemas - messaging: 3 services, 2 models, message/notification schemas - monitoring: background_tasks_service - marketplace: 5+ services including letzshop submodule - dev_tools: code_quality_service, test_runner_service - billing: billing_service - contracts: definition.py Legacy files in app/services/, models/database/, models/schema/ now re-export from canonical module locations for backwards compatibility. Architecture validator passes with 0 errors. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
834 B
Python
36 lines
834 B
Python
# app/modules/customers/services/__init__.py
|
|
"""
|
|
Customers module services.
|
|
|
|
This is the canonical location for customer services.
|
|
|
|
Usage:
|
|
from app.modules.customers.services import (
|
|
customer_service,
|
|
admin_customer_service,
|
|
customer_address_service,
|
|
)
|
|
"""
|
|
|
|
from app.modules.customers.services.customer_service import (
|
|
customer_service,
|
|
CustomerService,
|
|
)
|
|
from app.modules.customers.services.admin_customer_service import (
|
|
admin_customer_service,
|
|
AdminCustomerService,
|
|
)
|
|
from app.modules.customers.services.customer_address_service import (
|
|
customer_address_service,
|
|
CustomerAddressService,
|
|
)
|
|
|
|
__all__ = [
|
|
"customer_service",
|
|
"CustomerService",
|
|
"admin_customer_service",
|
|
"AdminCustomerService",
|
|
"customer_address_service",
|
|
"CustomerAddressService",
|
|
]
|