This commit is contained in:
root
2019-04-05 16:22:03 +08:00
commit 9334a46f24
7 changed files with 1049 additions and 0 deletions

10
main.py Normal file
View File

@@ -0,0 +1,10 @@
import sys
from PyQt5.QtWidgets import QApplication
from gui.mainwindow import MainWindow
if __name__ == '__main__':
app = QApplication(sys.argv)
main_window = MainWindow()
main_window.show()
sys.exit(app.exec_())