summaryrefslogtreecommitdiffstats
path: root/openbb_terminal/openbb_terminal/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_terminal/openbb_terminal/cli.py')
-rw-r--r--openbb_terminal/openbb_terminal/cli.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/openbb_terminal/openbb_terminal/cli.py b/openbb_terminal/openbb_terminal/cli.py
deleted file mode 100644
index aec05931367..00000000000
--- a/openbb_terminal/openbb_terminal/cli.py
+++ /dev/null
@@ -1,20 +0,0 @@
-"""OpenBB Platform CLI entry point."""
-
-import sys
-
-from openbb_terminal.config.setup import setup_config_terminal
-from openbb_terminal.controllers.terminal_controller import launch
-
-
-def main():
- """Use the main entry point for the OpenBB Terminal CLI."""
- setup_config_terminal()
-
- dev = "--dev" in sys.argv[1:]
- debug = "--debug" in sys.argv[1:]
-
- launch(dev, debug)
-
-
-if __name__ == "__main__":
- main()