SXXXXXXX_RepoSync/reposync/__main__.py
2025-07-07 11:09:32 +02:00

21 lines
375 B
Python

# RepoSync/__main__.py
"""
Main entry point for the RepoSync application.
This script launches the graphical user interface.
To run the application, execute: python -m RepoSync
"""
from .gui.main_window import Application
def start_app():
"""Initializes and runs the application."""
app = Application()
app.run()
if __name__ == "__main__":
start_app()