Files
sora_python/app/api/api_route.py

10 lines
292 B
Python
Raw Normal View History

2024-03-11 10:29:58 +08:00
from fastapi import APIRouter
from app.api import api_test
2024-03-11 10:49:01 +08:00
from app.api import api_outfit_matcher
2024-03-11 10:29:58 +08:00
router = APIRouter()
router.include_router(api_test.router, tags=["test"], prefix="/test")
2024-03-11 10:49:01 +08:00
router.include_router(api_outfit_matcher.router, tags=["outfit_matcher"], prefix="/outfit_matcher")