Files
sora_python/app/api/api_outfit_matcher.py
zhouchengrong 117e569730 add file
2024-03-11 10:58:34 +08:00

16 lines
293 B
Python

import logging
from fastapi import APIRouter
from app.service.outfit_matcher.service import OutfitMatcherHon
logger = logging.getLogger()
router = APIRouter()
@router.post("")
def outfit_matcher_hon():
service = OutfitMatcherHon()
logger.info("test")
return {"message": "ok"}