summaryrefslogtreecommitdiff
path: root/bitsandbytes/debug_cli.py
blob: 88307a6fc95d290feaffc00c65bd0d0e71cbdbf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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")