chezahuynya1/main.py

12 lines
298 B
Python
Raw Normal View History

2024-10-15 00:02:41 +03:00
from app.utils.config import debug
2024-10-14 23:04:09 +03:00
from app.menu_load import menu
if __name__ == "__main__":
2024-10-15 00:02:41 +03:00
if debug == True:
print("Running in debug mode...")
from test_module.debug_main import debug_main_start
debug_main_start()
else:
mn = menu()
mn.main_menu()