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.
11 lines
332 B
11 lines
332 B
from controller.SpyderController import SpyderController
|
|
from controller.UIController import UIController
|
|
from test.SpyderController_test import TestSpyderController
|
|
|
|
spyderController = SpyderController()
|
|
uiController = UIController()
|
|
|
|
if __name__ == '__main__':
|
|
print("this is main.py!")
|
|
TestSpyderController().test_main()
|