diff --git a/src/main/java/cat/udl/eps/softarch/demo/repository/ShelterRepository.java b/src/main/java/cat/udl/eps/softarch/demo/repository/ShelterRepository.java new file mode 100644 index 0000000..718aada --- /dev/null +++ b/src/main/java/cat/udl/eps/softarch/demo/repository/ShelterRepository.java @@ -0,0 +1,8 @@ +package cat.udl.eps.softarch.demo.repository; + +import cat.udl.eps.softarch.demo.domain.Shelter; +import org.springframework.data.repository.CrudRepository; +import org.springframework.data.repository.PagingAndSortingRepository; + +public interface ShelterRepository extends CrudRepository, PagingAndSortingRepository { +}