12 lines
298 B
Python
12 lines
298 B
Python
from app.utils.config import debug
|
|
from app.menu_load import menu
|
|
|
|
if __name__ == "__main__":
|
|
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()
|