summaryrefslogtreecommitdiff
path: root/examples/complex/complex/commands/cmd_status.py
blob: 92275bb49778f0a7c7c4ca5abe062fd59e2ecac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
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")