summaryrefslogtreecommitdiff
path: root/bitsandbytes/debug_cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitsandbytes/debug_cli.py')
-rw-r--r--bitsandbytes/debug_cli.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/bitsandbytes/debug_cli.py b/bitsandbytes/debug_cli.py
new file mode 100644
index 0000000..4306bc0
--- /dev/null
+++ b/bitsandbytes/debug_cli.py
@@ -0,0 +1,26 @@
+import typer
+
+cli = typer.Typer()
+
+
+@cli.callback()
+def callback():
+ """
+ Awesome Portal Gun
+ """
+
+
+@cli.command()
+def shoot():
+ """
+ Shoot the portal gun
+ """
+ typer.echo("Shooting portal gun")
+
+
+@cli.command()
+def load():
+ """
+ Load the portal gun
+ """
+ typer.echo("Loading portal gun")