From f056e38c421a3d90b15ee5514a727e7555779cac Mon Sep 17 00:00:00 2001 From: Matthew Iverson Date: Tue, 26 Nov 2024 08:05:58 -0500 Subject: [PATCH] Upload files to "/" --- dco.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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