Upload files to "/"

This commit is contained in:
2024-11-26 08:05:58 -05:00
parent 55c2f96ba8
commit f056e38c42

4
dco.py
View File

@ -1,7 +1,9 @@
from Modules.Imports.all_imports import * from Modules.Imports.all_imports import *
from TTPs.menu import MENU_OPTIONS as BASE_MENU_OPTIONS from TTPs.menu import MENU_OPTIONS as BASE_MENU_OPTIONS
from Modules.cli_handler import handle_arguments
if __name__ == "__main__": if __name__ == "__main__":
handle_arguments() # Handle CLI arguments first
MENU_OPTIONS = { MENU_OPTIONS = {
key: { key: {
**value, **value,
@ -10,4 +12,4 @@ if __name__ == "__main__":
for key, value in BASE_MENU_OPTIONS.items() for key, value in BASE_MENU_OPTIONS.items()
} }
display_menu(MENU_OPTIONS) # Display the dynamic menu display_menu(MENU_OPTIONS) # Display the dynamic menu