Bing Analytics and Insights added, background jobs added, database setup updated, environment setup updated, frontend updated, backend updated.
Onboarding Manager and Router Manager refactored, analytics and background jobs added, database setup updated, environment setup updated, frontend updated, backend updated. Critical onboarding database migration implemented.
This commit is contained in:
15
backend/services/analytics/models/__init__.py
Normal file
15
backend/services/analytics/models/__init__.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""
|
||||
Analytics Models Package
|
||||
|
||||
Contains data models and type definitions for the analytics system.
|
||||
"""
|
||||
|
||||
from .analytics_data import AnalyticsData
|
||||
from .platform_types import PlatformType, AnalyticsStatus, PlatformConnectionStatus
|
||||
|
||||
__all__ = [
|
||||
'AnalyticsData',
|
||||
'PlatformType',
|
||||
'AnalyticsStatus',
|
||||
'PlatformConnectionStatus'
|
||||
]
|
||||
Reference in New Issue
Block a user