Coverage for harbor_cli/commands/cli/__init__.py: 100%

8 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2023-02-09 12:09 +0100

1"""Commands that are used to configure and interact with the CLI itself.""" 

2from __future__ import annotations 

3 

4import typer 

5 

6from . import cli_config as cli_config 

7from . import find as find 

8from . import init as init 

9from . import repl as repl 

10from . import sample_config as sample_config 

11 

12# No subcommands for the CLI commands yet 

13cli_commands: list[typer.Typer] = [cli_config.app]