- Introduced new routes and API endpoints for managing personal reference values. - Updated the SettingsPage to include a section for reference values with navigation to manage them. - Enhanced the backend to support reference values in the data layer and versioning. - Added necessary imports and UI components for a seamless user experience.
14 lines
317 B
Python
14 lines
317 B
Python
"""Training base profile registrations (scaffold, in-code)."""
|
|
|
|
from .registry import (
|
|
get_training_base_profile,
|
|
list_training_base_profile_keys,
|
|
try_get_training_base_profile,
|
|
)
|
|
|
|
__all__ = [
|
|
"get_training_base_profile",
|
|
"list_training_base_profile_keys",
|
|
"try_get_training_base_profile",
|
|
]
|