21 lines
375 B
Python
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()
|