Files
RSAS-Data-Export/main.py

10 lines
235 B
Python
Raw Normal View History

2019-04-05 16:22:03 +08:00
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_())