SamAuthenticator/SamAuthenticator/AuthenticatorGUIApp.py
2018-03-27 22:16:42 +02:00

14 lines
235 B
Python

from PyQt5.QtWidgets import QApplication
import SamAuthenticator.AuthenticatorWindow as MainWindow
import sys
def start():
app = QApplication(sys.argv)
w = MainWindow.AuthenticatorGUI()
w.show()
return app.exec_()