Files
AiDA_Python/app/api/api_route.py

12 lines
415 B
Python
Raw Normal View History

2024-03-20 11:44:15 +08:00
from fastapi import APIRouter
from app.api import api_test
from app.api import api_super_resolution
2024-04-15 18:07:25 +08:00
from app.api import api_generate_image
2024-03-20 11:44:15 +08:00
router = APIRouter()
router.include_router(api_test.router, tags=["test"], prefix="/test")
2024-04-15 18:07:25 +08:00
router.include_router(api_super_resolution.router, tags=["super_resolution"], prefix="/api")
router.include_router(api_generate_image.router, tags=["generate_image"], prefix="/api")