Command Reference

workflow_tutor()

Sends »Hello world!« to the CLI.

Just the standard of a new Hatch environment right now. Future stuff to come.

Source code in src/workflow_tutor/cli/__init__.py
@click.group(context_settings={"help_option_names": ["-h", "--help"]}, invoke_without_command=True)
@click.version_option(version=__version__, prog_name="Workflow Tutor")
def workflow_tutor():
    """Sends »Hello world!« to the CLI.

    Just the standard of a new Hatch environment right now. Future stuff to come.
    """
    click.echo("Hello world!")