Skip to content

Commit

Permalink
add(repository layer): product repository interface
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelribeiroo committed Dec 22, 2024
1 parent 85c75d4 commit 129689c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main/java/auth/api/repositories/ProductRepository.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package auth.api.repositories;

import auth.api.model.product.Product;
import org.springframework.data.jpa.repository.JpaRepository;

public interface ProductRepository extends JpaRepository<Product, Long> { }

0 comments on commit 129689c

Please sign in to comment.