fix: 添加auth功能

This commit is contained in:
root
2025-07-12 18:01:17 +08:00
parent 41363d182e
commit e4d4677f3a
12 changed files with 1725 additions and 91 deletions

View File

@@ -11,6 +11,7 @@ import typer
from python_core.cli.commands import scene_detect
from python_core.cli.commands.template import template_app
from python_core.cli.commands.category import category_app
from python_core.cli.commands.auth import auth_app
app = typer.Typer(
name="mixvideo",
@@ -21,6 +22,7 @@ app = typer.Typer(
• 🎯 场景检测 - 智能识别视频场景变化
• 📋 模板管理 - 视频模板批量导入、列表查看、详情获取
• 🏷️ 分类管理 - 资源分类创建、更新、删除、搜索
• 👤 用户认证 - 用户注册、登录、JWT token管理
• 📤 媒体管理 - 上传、处理、组织视频文件
• ⚙️ 系统管理 - 配置、状态、存储管理
""",
@@ -32,6 +34,7 @@ app = typer.Typer(
app.add_typer(scene_detect, name="scene")
app.add_typer(template_app, name="template")
app.add_typer(category_app, name="category")
app.add_typer(auth_app, name="auth")
@app.command()
def init():