fix : 회원 관리 API 수정 및 ApiResponse 타입 수정

This commit is contained in:
2025-08-14 00:55:08 +09:00
committed by hskwon
parent 93042d189d
commit be89d149de
13 changed files with 660 additions and 181 deletions

View File

@@ -19,7 +19,7 @@ public function getCategory(Request $request)
{
return ApiResponse::handle(function () use ($request) {
return ProductService::getCategory($request);
}, '제품 카테고리 조회 성공', '제품 카테고리 조회 실패');
}, '제품 카테고리 조회');
}