Swiper-match / utils /__init__.py
Almaz K
added phone numbers to results
e4c90f5
raw
history blame contribute delete
507 Bytes
"""
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'
]