Update the environment, add foco
This commit is contained in:
@@ -7,7 +7,6 @@ from app.service.outfit_matcher_hon.service import OutfitMatcherHon
|
||||
logger = logging.getLogger()
|
||||
router = APIRouter()
|
||||
|
||||
class Item(BaseModel)
|
||||
|
||||
@router.post("")
|
||||
def outfit_matcher_hon():
|
||||
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user