Client/main.py
2022-02-02 01:43:38 +01:00

12 lines
371 B
Python

from gui.MainWindow import *
from controller.MainWindowController import *
from controller.AppController import *
from model.Protocol import *
if __name__ == '__main__':
parser = Protocol()
app_controller = AppController(parser)
event_handler = MainWindowController(parser, app_controller)
window = MainWindow(event_handler)
window.start_main_loop()