返回 Pixelle-Video
__init__.py
根目录 / api / routers / __init__.py
1 # Copyright (C) 2025 AIDC-AI
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 # http://www.apache.org/licenses/LICENSE-2.0
7 # Unless required by applicable law or agreed to in writing, software
8 # distributed under the License is distributed on an "AS IS" BASIS,
9 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 # See the License for the specific language governing permissions and
11 # limitations under the License.
12
13 """
14 API Routers
15 """
16
17 from api.routers.health import router as health_router
18 from api.routers.llm import router as llm_router
19 from api.routers.tts import router as tts_router
20 from api.routers.image import router as image_router
21 from api.routers.content import router as content_router
22 from api.routers.video import router as video_router
23 from api.routers.tasks import router as tasks_router
24 from api.routers.files import router as files_router
25 from api.routers.resources import router as resources_router
26 from api.routers.frame import router as frame_router
27
28 __all__ = [
29 "health_router",
30 "llm_router",
31 "tts_router",
32 "image_router",
33 "content_router",
34 "video_router",
35 "tasks_router",
36 "files_router",
37 "resources_router",
38 "frame_router",
39 ]
40
41
41 lines PYTHON