10 lines
291 B
Python
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")
|