Coverage for src/ss_python/cli.py: 100%
7 statements
« prev ^ index » next coverage.py v7.6.4, created at 2024-11-20 08:23 +0000
« prev ^ index » next coverage.py v7.6.4, created at 2024-11-20 08:23 +0000
1"""Command Line Interface."""
3import typer
5app = typer.Typer()
8@app.command()
9def run() -> None:
10 """Run command."""
13# NOTE(huxuan): callback is required for single command as a subcommand in typer.
14# And it is a convenient way to document the cli here.
15# Reference: https://typer.tiangolo.com/tutorial/commands/one-or-multiple/#one-command-and-one-callback
16@app.callback(no_args_is_help=True)
17def main() -> None:
18 """CLI for Serious Scaffold Python."""
21# NOTE(huxuan): click object is used for document generation.
22# Reference: https://github.com/tiangolo/typer/issues/200#issuecomment-796485787
23typer_click_object = typer.main.get_command(app)