Update the environment, add foco

This commit is contained in:
zhouchengrong
2024-03-11 10:49:01 +08:00
parent df1e709dde
commit 16d0e98e2f
4 changed files with 258 additions and 2 deletions

View File

@@ -1,7 +1,9 @@
from fastapi import APIRouter
from app.api import api_test
from app.api import api_outfit_matcher
router = APIRouter()
router.include_router(api_test.router, tags=["test"], prefix="/test")
router.include_router(api_outfit_matcher.router, tags=["outfit_matcher"], prefix="/outfit_matcher")