This commit is contained in:
zhouchengrong
2024-03-20 11:44:15 +08:00
commit 69132570aa
29 changed files with 815 additions and 0 deletions

9
app/api/api_route.py Normal file
View File

@@ -0,0 +1,9 @@
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")