After Graduate Update
This commit is contained in:
parent
b92a91ab37
commit
c6917dd85e
69 changed files with 7540 additions and 0 deletions
11
robbery/master_pol-module_1_2/app/main.py
Normal file
11
robbery/master_pol-module_1_2/app/main.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
from PyQt6.QtWidgets import QApplication
|
||||
from PyQt6.QtGui import QIcon
|
||||
from pages.auth_page import AuthPage
|
||||
|
||||
app = QApplication([])
|
||||
|
||||
app.setWindowIcon(QIcon("app/res/imgs/master_pol.ico"))
|
||||
start_page = AuthPage()
|
||||
start_page.show()
|
||||
|
||||
app.exec()
|
||||
Loading…
Add table
Add a link
Reference in a new issue