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
|
2024-10-14 21:47:19 +03:00
|
|
|
|
|
|
|
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()
|