Initial commit
This commit is contained in:
16
app/api/api_outfit_matcher.py
Normal file
16
app/api/api_outfit_matcher.py
Normal file
@@ -0,0 +1,16 @@
|
||||
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"}
|
||||
Reference in New Issue
Block a user