xxx777xxxASD's picture
Upload 4 files
29d9465 verified
raw
history blame contribute delete
212 Bytes
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())