''' Program controller python file '''

import assistant, specialOps, time

print("3 modules have been imported")

#calling functions directly from a module 1, assistant
assistant.a_function()

#calling function directly from module 2 -->> specialOps
specialOps.another_function()
time.sleep(1)

#using a class from a module
my_dog = assistant.Dog()
my_dog.bark()
my_dog.dog_spawn_window()

