first ui widget placement

This commit is contained in:
2025-09-06 17:46:17 +02:00
parent 1896d75c50
commit 69a31e153f
3 changed files with 105 additions and 0 deletions

15
main.py Normal file
View File

@@ -0,0 +1,15 @@
import sys
from PySide6.QtWidgets import QApplication
from ui.main_window import MainWindow
def main():
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec())
if __name__ == "__main__":
main()