Upload files to "Modules"
This commit is contained in:
24
Modules/global_commands.py
Normal file
24
Modules/global_commands.py
Normal file
@ -0,0 +1,24 @@
|
||||
from Modules.Submenus.about import *
|
||||
from Modules.Submenus.analyst_notebook import *
|
||||
|
||||
def global_command_handler(command):
|
||||
if command.lower() == "note":
|
||||
analyst_notebook_submenu()
|
||||
elif command.lower() == "about":
|
||||
about_submenu()
|
||||
else:
|
||||
print(f"{Fore.RED}Invalid global command: {command}{Style.RESET_ALL}")
|
||||
|
||||
def redirect_to_analyst_notebook():
|
||||
analyst_notebook_submenu()
|
||||
|
||||
def redirect_to_about():
|
||||
about_submenu()
|
||||
|
||||
def global_command_handler(command):
|
||||
if command.lower() in ["an","note","notebook","analyst","analyst notebook"]:
|
||||
redirect_to_analyst_notebook()
|
||||
elif command.lower() == "about":
|
||||
redirect_to_about()
|
||||
else:
|
||||
print("Invalid global command.")
|
Reference in New Issue
Block a user