Skip to content

Commit

Permalink
follow 레포지토리 및 서비스 파일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jj0526 committed Oct 8, 2024
1 parent 648b04a commit d69a9c5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
import org.springframework.stereotype.Repository;

@Repository
public interface FollowRespository extends JpaRepository<Member, Long> {
public interface FollowRepository extends JpaRepository<Member, Long> {
}
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
package com.leets.team2.xclone.domain.follow.service;public class FollowService {
package com.leets.team2.xclone.domain.follow.service;

import com.leets.team2.xclone.domain.follow.repository.FollowRepository;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;

@Service
@RequiredArgsConstructor
public class FollowService {
private final FollowRepository followRepository;
}

0 comments on commit d69a9c5

Please sign in to comment.