18 lines
249 B
Python
18 lines
249 B
Python
#!/usr/bin/python3
|
|
|
|
from ui.main_window import MainWindow
|
|
|
|
|
|
class GUI:
|
|
def __init__(self, app):
|
|
self.app = app
|
|
|
|
self.window = MainWindow()
|
|
|
|
self.connect()
|
|
|
|
self.window.show()
|
|
|
|
def connect(self):
|
|
pass
|
|
|