mirror of
https://github.com/sstent/AICyclingCoach.git
synced 2026-01-26 00:52:07 +00:00
change to TUI
This commit is contained in:
18
tui/services/__init__.py
Normal file
18
tui/services/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
"""
|
||||
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'
|
||||
]
|
||||
Reference in New Issue
Block a user