From cd498fa5840f594ee922be697dc02ac08b736059 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=9A=B0=EC=9E=AC?= Date: Mon, 11 Oct 2021 22:49:47 +0900 Subject: [PATCH] =?UTF-8?q?[#54]=20feat:=20FollowService=20=EC=9D=B8?= =?UTF-8?q?=EC=8A=A4=ED=84=B4=EC=8A=A4=20=EC=83=9D=EC=84=B1=EC=9E=90=20?= =?UTF-8?q?=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/follow/application/FollowService.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/com/study/realworld/domain/follow/application/FollowService.java b/src/main/java/com/study/realworld/domain/follow/application/FollowService.java index 026ec17f..2d2be9b7 100644 --- a/src/main/java/com/study/realworld/domain/follow/application/FollowService.java +++ b/src/main/java/com/study/realworld/domain/follow/application/FollowService.java @@ -1,10 +1,18 @@ package com.study.realworld.domain.follow.application; +import com.study.realworld.domain.follow.domain.FollowQueryDslRepository; +import com.study.realworld.domain.follow.domain.FollowRepository; import org.springframework.stereotype.Service; @Service public class FollowService { + private final FollowRepository followRepository; + private final FollowQueryDslRepository followQueryDslRepository; + public FollowService(final FollowRepository followRepository, final FollowQueryDslRepository followQueryDslRepository) { + this.followRepository = followRepository; + this.followQueryDslRepository = followQueryDslRepository; + } }