Skip to content

Commit

Permalink
Merge pull request #45 from LeejuButU/feat/repository/photo
Browse files Browse the repository at this point in the history
PhotoRepository 작성
  • Loading branch information
kckc0608 authored Apr 14, 2024
2 parents 979358f + 430cd8f commit 9ce022c
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package LeejuButU.BidCycle.domain.photo.repository;

import LeejuButU.BidCycle.domain.photo.domain.Photo;
import org.springframework.data.jpa.repository.JpaRepository;

public abstract class PhotoRepository implements JpaRepository<Photo, Long> {
}

0 comments on commit 9ce022c

Please sign in to comment.