Skip to content

Commit

Permalink
repository created
Browse files Browse the repository at this point in the history
  • Loading branch information
xipi3000 committed Feb 22, 2024
1 parent 8b50bde commit 63340ec
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package cat.udl.eps.softarch.demo.repository;

import cat.udl.eps.softarch.demo.domain.SocialNetworks;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.rest.core.annotation.RepositoryRestResource;

@RepositoryRestResource
public interface SocialNetworksRepository extends CrudRepository<SocialNetworks,Long> {

}

0 comments on commit 63340ec

Please sign in to comment.