14 lines
235 B
Python
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_()
|