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