python-click/examples/complex/complex/commands/cmd_status.py
2020-07-21 02:23:42 -04:00

12 lines
286 B
Python

from complex.cli import pass_environment
import click
@click.command("status", short_help="Shows file changes.")
@pass_environment
def cli(ctx):
"""Shows file changes in the current working directory."""
ctx.log("Changed files: none")
ctx.vlog("bla bla bla, debug info")