We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76fa24b commit 1b6de50Copy full SHA for 1b6de50
src/main/java/com/back/domain/wishlist/repository/WishlistRepository.java
@@ -0,0 +1,9 @@
1
+package com.back.domain.wishlist.repository;
2
+
3
+import com.back.domain.wishlist.entity.Wishlist;
4
+import org.springframework.data.jpa.repository.JpaRepository;
5
+import org.springframework.stereotype.Repository;
6
7
+@Repository
8
+public interface WishlistRepository extends JpaRepository<Wishlist, Long> {
9
+}
0 commit comments