You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Spyder_python/main.py

11 lines
336 B

9 months ago
# from controller.SpyderController import SpyderController
9 months ago
from controller.UIController import UIController
from test.SpyderController_test import TestSpyderController
9 months ago
9 months ago
# spyderController = SpyderController()
9 months ago
uiController = UIController()
if __name__ == '__main__':
9 months ago
# print("this is main.py!")
UI = UIController()
UI.main()