summaryrefslogtreecommitdiff
path: root/examples/complex/complex/commands/cmd_status.py
blob: 12229c42f345232d1d3b31cd16c3ca18f0ab63da (plain)
1
2
3
4
5
6
7
8
9
10
import click
from complex.cli import pass_environment


@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')