12 lines
371 B
Python
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()
|