Spaces:
Sleeping
Sleeping
| """ | |
| Utility functions for the Swiper Match application | |
| """ | |
| # Import all helper functions and make them available at package level | |
| from .helpers import ( | |
| get_model_status_info, | |
| get_app_header, | |
| get_app_description, | |
| setup_event_handlers, | |
| format_dealer_results_as_html | |
| ) | |
| # Define what gets exported when using "from utils import *" | |
| __all__ = [ | |
| 'get_model_status_info', | |
| 'get_app_header', | |
| 'get_app_description', | |
| 'setup_event_handlers', | |
| 'format_dealer_results_as_html' | |
| ] |