mobili_cli/mobili_cli/commands/cmd_status.py

12 lines
289 B
Python

from mobili_cli.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")