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.
16 lines
340 B
Python
16 lines
340 B
Python
"""
|
|
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'
|
|
]
|