Files
AICyclingCoach/tui/services/__init__.py
2025-09-12 09:08:10 -07:00

18 lines
448 B
Python

"""
Service layer for TUI application.
Contains business logic extracted from FastAPI routes for direct method calls.
"""
from .dashboard_service import DashboardService
from .plan_service import PlanService
from .workout_service import WorkoutService
from .rule_service import RuleService
from .route_service import RouteService
__all__ = [
'DashboardService',
'PlanService',
'WorkoutService',
'RuleService',
'RouteService'
]