first try

This commit is contained in:
2022-12-15 09:13:24 +01:00
parent 718806f2f7
commit c9e963ee5d
4 changed files with 132 additions and 0 deletions

14
grum.py Executable file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env python
import sys
from PyQt5.QtWidgets import QApplication
from mainwin import MainWindow
app = QApplication(sys.argv)
mw = MainWindow()
mw.show()
sys.exit(app.exec())