返回 VideoClaw
__init__.py
根目录 / video-claw / video-claw / backend / api / routers / __init__.py
1 """API routers."""
2
3 from .health import router as health_router
4 from .files import router as files_router
5 from .workflow import router as workflow_router
6 from .sessions import router as sessions_router
7 from .stages import router as stages_router
8 from .sandbox import router as sandbox_router
9 from .pipelines import router as pipelines_router
10 from .configuration import router as configuration_router
11
12 __all__ = [
13 "health_router",
14 "files_router",
15 "workflow_router",
16 "sessions_router",
17 "stages_router",
18 "sandbox_router",
19 "pipelines_router",
20 "configuration_router",
21 ]
22
22 lines PYTHON