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