Files
UmaCardApplication/updater/__init__.py
2025-12-28 17:11:39 +00:00

9 lines
281 B
Python

"""
Updater module for UmamusumeCardManager
Handles checking for updates and downloading new versions from GitHub Releases.
"""
from updater.update_checker import check_for_updates, download_update, apply_update
__all__ = ['check_for_updates', 'download_update', 'apply_update']