Replace direct imports from optional modules (catalog, orders, analytics) with provider pattern calls (stats_aggregator, feature_aggregator) and move usage_service from analytics to billing where it belongs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
311 B
Python
18 lines
311 B
Python
# app/modules/analytics/services/__init__.py
|
|
"""
|
|
Analytics module services.
|
|
|
|
This is the canonical location for analytics services.
|
|
"""
|
|
|
|
from app.modules.analytics.services.stats_service import (
|
|
stats_service,
|
|
StatsService,
|
|
)
|
|
|
|
__all__ = [
|
|
# Stats service
|
|
"stats_service",
|
|
"StatsService",
|
|
]
|