mirror of
https://github.com/sstent/AICyclingCoach.git
synced 2026-01-26 17:12:30 +00:00
change to TUI
This commit is contained in:
18
tui/views/__init__.py
Normal file
18
tui/views/__init__.py
Normal 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'
|
||||
]
|
||||
Reference in New Issue
Block a user