mirror of
https://github.com/sstent/AICyclingCoach.git
synced 2026-01-25 16:41:58 +00:00
18 lines
448 B
Python
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'
|
|
] |