Session-gated MinIO save sync with AppImage GUI, CLI edit/session flow, and Gitea release helper. Co-authored-by: Cursor <[email protected]>
23 lines
465 B
Python
23 lines
465 B
Python
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
from PySide6.QtWidgets import QApplication
|
|
|
|
from syncgames import __version__
|
|
from syncgames.gui.main_window import MainWindow
|
|
|
|
|
|
def main() -> None:
|
|
app = QApplication(sys.argv)
|
|
app.setApplicationName("SyncGames")
|
|
app.setOrganizationName("SyncGames")
|
|
app.setApplicationVersion(__version__)
|
|
win = MainWindow()
|
|
win.show()
|
|
raise SystemExit(app.exec())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|