mirror of
https://github.com/bolucat/Archive.git
synced 2025-09-26 20:21:35 +08:00
16 lines
331 B
Python
Executable File
16 lines
331 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
from PyQt6.QtWidgets import QApplication
|
|
|
|
from lanzou.gui.gui import MainWindow, get_lanzou_logo
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = QApplication(sys.argv)
|
|
app.setWindowIcon(get_lanzou_logo())
|
|
form = MainWindow()
|
|
form.show()
|
|
form.call_login_launcher()
|
|
sys.exit(app.exec())
|