import typer | |
cli = typer.Typer() | |
def callback(): | |
""" | |
Awesome Portal Gun | |
""" | |
def shoot(): | |
""" | |
Shoot the portal gun | |
""" | |
typer.echo("Shooting portal gun") | |
def load(): | |
""" | |
Load the portal gun | |
""" | |
typer.echo("Loading portal gun") | |
import typer | |
cli = typer.Typer() | |
def callback(): | |
""" | |
Awesome Portal Gun | |
""" | |
def shoot(): | |
""" | |
Shoot the portal gun | |
""" | |
typer.echo("Shooting portal gun") | |
def load(): | |
""" | |
Load the portal gun | |
""" | |
typer.echo("Loading portal gun") | |