Files
AiDA_Python/app/api/api_route.py
zhouchengrong 69132570aa 1
2024-03-20 11:44:15 +08:00

10 lines
291 B
Python

from fastapi import APIRouter
from app.api import api_test
from app.api import api_super_resolution
router = APIRouter()
router.include_router(api_test.router, tags=["test"], prefix="/test")
router.include_router(api_super_resolution.router, tags=["api_super_resolution"], prefix="/api")