change to TUI

This commit is contained in:
2025-09-12 09:08:10 -07:00
parent 7c7dcb5b10
commit e0e70f6508
165 changed files with 3438 additions and 16154 deletions

18
tui/views/__init__.py Normal file
View File

@@ -0,0 +1,18 @@
"""
TUI Views package.
Contains all the main view components for the application screens.
"""
from .dashboard import DashboardView
from .workouts import WorkoutView
from .plans import PlanView
from .rules import RuleView
from .routes import RouteView
__all__ = [
'DashboardView',
'WorkoutView',
'PlanView',
'RuleView',
'RouteView'
]