Skip to content

Commit

Permalink
[#54] feat: FollowService 인스턴스 생성자 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
kwj1270 committed Oct 11, 2021
1 parent 57dc07d commit cd498fa
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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;
}

}

0 comments on commit cd498fa

Please sign in to comment.