path-of-the-loner/main.py
2025-03-03 16:47:07 +01:00

19 lines
298 B
Python

# main
from controllers.mainController import MainController
def main():
MainController()
try:
if __name__ == "__main__":
main()
except TypeError as te:
print("Type Error:", te)
except IOError as ie:
print("IO Error", ie)
except Exception as e:
print("Error:", e)