aboutsummaryrefslogtreecommitdiffstats
path: root/script.py
blob: d87c8c5a79983d8c36bae675ff22d2a646093bc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
""" Hypervideo-GUI Script """

import sys

from hypervideo_gui.main_ui import *

# Exec APP
if __name__ == '__main__':
    APP = QApplication(sys.argv)
    MAINWIN = MainWindow()
    MAINWIN.show()
    sys.exit(APP.exec_())