Files
sora_python/app/api/api_outfit_matcher.py

16 lines
297 B
Python
Raw Normal View History

2024-03-11 10:29:58 +08:00
import logging
from fastapi import APIRouter
from app.service.outfit_matcher_hon.service import OutfitMatcherHon
logger = logging.getLogger()
router = APIRouter()
@router.post("")
def outfit_matcher_hon():
service = OutfitMatcherHon()
logger.info("test")
return {"message": "ok"}