diff --git a/dco.py b/dco.py index 5f2cc24..b6e32f3 100644 --- a/dco.py +++ b/dco.py @@ -1,7 +1,9 @@ from Modules.Imports.all_imports import * from TTPs.menu import MENU_OPTIONS as BASE_MENU_OPTIONS +from Modules.cli_handler import handle_arguments if __name__ == "__main__": + handle_arguments() # Handle CLI arguments first MENU_OPTIONS = { key: { **value, @@ -10,4 +12,4 @@ if __name__ == "__main__": for key, value in BASE_MENU_OPTIONS.items() } - display_menu(MENU_OPTIONS) # Display the dynamic menu + display_menu(MENU_OPTIONS) # Display the dynamic menu \ No newline at end of file