1import typer
2
3app = typer.Typer()
4
5
6@app.command()
7def create(item: str):
8    typer.echo(f"Creating item: {item}")
9
10
11@app.command()
12def delete(item: str):
13    typer.echo(f"Deleting item: {item}")
14
15
16@app.command()
17def sell(item: str):
18    typer.echo(f"Selling item: {item}")
19
20
21if __name__ == "__main__":
22    app()
23