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