This commit is contained in:
root
2025-07-13 11:48:32 +08:00
parent d9e0e2e791
commit 146626dd9a
4 changed files with 285 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ from python_core.cli.commands.template import template_app
from python_core.cli.commands.resource_category import resource_category_app
from python_core.cli.commands.auth import auth_app
from python_core.cli.commands.model import model_app
from python_core.cli.commands.system import system_app
app = typer.Typer(
name="mixvideo",
@@ -37,6 +38,7 @@ app.add_typer(template_app, name="template")
app.add_typer(resource_category_app, name="resource-category")
app.add_typer(auth_app, name="auth")
app.add_typer(model_app, name="model")
app.add_typer(system_app, name="system")
@app.command()
def init():