From b850d80609d0fe8da3ebf32384580535a598e3e7 Mon Sep 17 00:00:00 2001 From: lsn5963 <77337977+lsn5963@users.noreply.github.com> Date: Sat, 13 Jan 2024 19:45:49 +0900 Subject: [PATCH] [refactor/72-task] req -> request, res -> response [refactor/72-task] req -> request, res -> response --- .../depth/main/ideac/domain/home/application/HomeService.java | 2 +- .../main/ideac/domain/home/presentation/HomeController.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ideac-user/src/main/java/depth/main/ideac/domain/home/application/HomeService.java b/ideac-user/src/main/java/depth/main/ideac/domain/home/application/HomeService.java index 0c57c98..9487219 100644 --- a/ideac-user/src/main/java/depth/main/ideac/domain/home/application/HomeService.java +++ b/ideac-user/src/main/java/depth/main/ideac/domain/home/application/HomeService.java @@ -5,7 +5,7 @@ import depth.main.ideac.domain.club_post.dto.response.ClubPostRes; import depth.main.ideac.domain.club_post.repository.ClubPostRepository; import depth.main.ideac.domain.idea_post.IdeaPost; -import depth.main.ideac.domain.idea_post.dto.res.GetAllIdeasRes; +import depth.main.ideac.domain.idea_post.dto.response.GetAllIdeasRes; import depth.main.ideac.domain.idea_post.repository.IdeaPostRepository; import depth.main.ideac.domain.project_post.ProjectPost; import depth.main.ideac.domain.project_post.ProjectPostImage; diff --git a/ideac-user/src/main/java/depth/main/ideac/domain/home/presentation/HomeController.java b/ideac-user/src/main/java/depth/main/ideac/domain/home/presentation/HomeController.java index 3daa4d3..50e1e89 100644 --- a/ideac-user/src/main/java/depth/main/ideac/domain/home/presentation/HomeController.java +++ b/ideac-user/src/main/java/depth/main/ideac/domain/home/presentation/HomeController.java @@ -2,7 +2,7 @@ import depth.main.ideac.domain.club_post.dto.response.ClubPostRes; import depth.main.ideac.domain.home.application.HomeService; -import depth.main.ideac.domain.idea_post.dto.res.GetAllIdeasRes; +import depth.main.ideac.domain.idea_post.dto.response.GetAllIdeasRes; import depth.main.ideac.domain.project_post.dto.response.ProjectRes; import depth.main.ideac.global.payload.ApiResponse; import io.swagger.v3.oas.annotations.Operation;