move cli and api into wrapper

This commit is contained in:
Ftps
2024-03-07 21:50:15 +09:00
parent 0c3c512396
commit 785abd7830
12 changed files with 75 additions and 19 deletions

View File

@@ -34,10 +34,10 @@ numba = "0.59.0rc1"
api = ["uvicorn", "fastapi"]
[tool.poetry.scripts]
rvc = "rvc.utils.cli.cli:main"
rvc = "rvc.wrapper.cli.cli:main"
[tool.poe.tasks]
rvc-api = "uvicorn rvc.utils.api.api:app --reload"
rvc-api = "uvicorn rvc.wrapper.api.api:app --reload"
[build-system]
requires = ["poetry-core"]