feat: Add comprehensive timeline editor with frame editing and regeneration capabilities

This commit is contained in:
empty
2026-01-05 14:48:43 +08:00
parent 7d78dcd078
commit ca018a9b1f
68 changed files with 14904 additions and 57 deletions

View File

@@ -24,6 +24,8 @@ from api.routers.tasks import router as tasks_router
from api.routers.files import router as files_router
from api.routers.resources import router as resources_router
from api.routers.frame import router as frame_router
from api.routers.editor import router as editor_router
from api.routers.publish import router as publish_router
__all__ = [
"health_router",
@@ -36,5 +38,8 @@ __all__ = [
"files_router",
"resources_router",
"frame_router",
"editor_router",
"publish_router",
]