change to TUI

This commit is contained in:
2025-09-12 09:08:10 -07:00
parent f2a305626f
commit e20e4ab9d9
262 changed files with 3438 additions and 16479 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'
]