SamAuthenticator/SamAuthenticator/AuthenticatorGUIApp.py

14 lines
235 B
Python
Raw Permalink Normal View History

2018-03-27 20:16:42 +00:00
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_()