File size: 212 Bytes
29d9465
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import sys
from PyQt6.QtWidgets import QApplication
from ui_loader import UILoader

if __name__ == "__main__":
	app = QApplication(sys.argv)
	ui_loader = UILoader()
	ui_loader.show()
	sys.exit(app.exec())