update router tags

insta
Dohyun Lim 2026-01-20 17:41:21 +09:00
parent 47aca58b02
commit b6e50be9ca
1 changed files with 3 additions and 3 deletions

View File

@ -102,7 +102,7 @@ def _extract_region_from_address(road_address: str | None) -> str:
"model": ErrorResponse, "model": ErrorResponse,
}, },
}, },
tags=["crawling"], tags=["Crawling"],
) )
async def crawling(request_body: CrawlingRequest): async def crawling(request_body: CrawlingRequest):
"""네이버 지도 장소 크롤링""" """네이버 지도 장소 크롤링"""
@ -379,7 +379,7 @@ print(response.json())
200: {"description": "이미지 업로드 성공"}, 200: {"description": "이미지 업로드 성공"},
400: {"description": "이미지가 제공되지 않음", "model": ErrorResponse}, 400: {"description": "이미지가 제공되지 않음", "model": ErrorResponse},
}, },
tags=["Image"], tags=["Image-Server"],
) )
async def upload_images( async def upload_images(
images_json: Optional[str] = Form( images_json: Optional[str] = Form(
@ -597,7 +597,7 @@ curl -X POST "http://localhost:8000/image/upload/blob" \\
200: {"description": "이미지 업로드 성공"}, 200: {"description": "이미지 업로드 성공"},
400: {"description": "이미지가 제공되지 않음", "model": ErrorResponse}, 400: {"description": "이미지가 제공되지 않음", "model": ErrorResponse},
}, },
tags=["image"], tags=["Image-Blob"],
) )
async def upload_images_blob( async def upload_images_blob(
images_json: Optional[str] = Form( images_json: Optional[str] = Form(