Delete dco.py

This commit is contained in:
2024-11-28 00:52:41 -05:00
parent a7c3a503a1
commit 370905ce2d

15
dco.py
View File

@ -1,15 +0,0 @@
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,
"submenu": value["submenu"], # Pass the actual function
}
for key, value in BASE_MENU_OPTIONS.items()
}
display_menu(MENU_OPTIONS) # Display the dynamic menu