Client/main.py

12 lines
371 B
Python
Raw Normal View History

2022-02-02 01:43:38 +01:00
from gui.MainWindow import *
from controller.MainWindowController import *
from controller.AppController import *
from model.Protocol import *
2022-02-01 21:30:30 +01:00
if __name__ == '__main__':
2022-02-02 01:43:38 +01:00
parser = Protocol()
app_controller = AppController(parser)
event_handler = MainWindowController(parser, app_controller)
window = MainWindow(event_handler)
window.start_main_loop()