HRVC / src /ultimate_rvc /cli /main.py
SpyC0der77's picture
Upload folder using huggingface_hub
1a942eb verified
Raw
History Blame Contribute Delete
389 Bytes
"""
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()