hatched
This commit is contained in:
commit
aac78ff993
9 changed files with 1089 additions and 0 deletions
13
coverage_rich/cli/__init__.py
Normal file
13
coverage_rich/cli/__init__.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# SPDX-FileCopyrightText: 2023-present Waylon S. Walker <waylon@waylonwalker.com>
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
import click
|
||||
|
||||
from ..__about__ import __version__
|
||||
|
||||
|
||||
@click.group(context_settings={'help_option_names': ['-h', '--help']}, invoke_without_command=True)
|
||||
@click.version_option(version=__version__, prog_name='coverage-rich')
|
||||
@click.pass_context
|
||||
def coverage_rich(ctx: click.Context):
|
||||
click.echo('Hello world!')
|
||||
Loading…
Add table
Add a link
Reference in a new issue