8 lines
232 B
Python
8 lines
232 B
Python
from PySide6.QtWidgets import QApplication
|
|
from controller.main_controller import MainController
|
|
|
|
if __name__ == "__main__":
|
|
app = QApplication([])
|
|
controller = MainController()
|
|
controller.showMainWindow()
|
|
app.exec() |