17 lines
319 B
Python
17 lines
319 B
Python
import logging
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from app.service.outfit_matcher_hon.service import OutfitMatcherHon
|
|
|
|
logger = logging.getLogger()
|
|
router = APIRouter()
|
|
|
|
class Item(BaseModel)
|
|
|
|
@router.post("")
|
|
def outfit_matcher_hon():
|
|
service = OutfitMatcherHon()
|
|
logger.info("test")
|
|
return {"message": "ok"}
|