Spaces:
Sleeping
Sleeping
| # utils/__init__.py | |
| """Utility modules for TriviaVerse application""" | |
| from .score_tracker import ScoreTracker | |
| from .user_auth import init_authentication, authenticate_user | |
| from .ui_components import * | |
| from .mobile_responsive import * | |
| __all__ = [ | |
| "ScoreTracker", | |
| "init_authentication", | |
| "authenticate_user", | |
| "apply_custom_theme", | |
| "display_user_stats", | |
| "display_badges", | |
| "create_progress_chart", | |
| "animated_success", | |
| "create_quiz_card", | |
| "responsive_columns", | |
| "responsive_css", | |
| ] | |