Spaces:
Runtime error
Runtime error
File size: 389 Bytes
1a942eb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
"""
Module which defines the command-line interface for the Ultimate RVC
project.
"""
import typer
from ultimate_rvc.cli.generate.song_cover import app as song_cover_app
app = typer.Typer(
name="urvc-cli",
no_args_is_help=True,
help="CLI for the Ultimate RVC project",
rich_markup_mode="markdown",
)
app.add_typer(song_cover_app)
if __name__ == "__main__":
app()
|