Coverage for rendercv/cli/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-10-07 17:51 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-10-07 17:51 +0000
1"""
2The `rendercv.cli` package contains the functions and classes that handle RenderCV's
3command-line interface (CLI). It uses [Typer](https://typer.tiangolo.com/) to create the
4CLI and [Rich](https://rich.readthedocs.io/en/latest/) to provide a nice-looking
5interface.
6"""
8from .commands import (
9 app,
10 cli_command_create_theme,
11 cli_command_new,
12 cli_command_no_args,
13 cli_command_render,
14)
16__all__ = [
17 "app",
18 "cli_command_render",
19 "cli_command_new",
20 "cli_command_create_theme",
21 "cli_command_no_args",
22]