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