Skip to content

Commit

Permalink
adding beer repository closes #6
Browse files Browse the repository at this point in the history
  • Loading branch information
springframeworkguru committed May 17, 2019
1 parent cb1012a commit 1dcf8eb
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package guru.springframework.msscbeerservice.repositories;

import guru.springframework.msscbeerservice.domain.Beer;
import org.springframework.data.repository.PagingAndSortingRepository;

import java.util.UUID;

/**
* Created by jt on 2019-05-17.
*/
public interface BeerRepository extends PagingAndSortingRepository<Beer, UUID> {
}

0 comments on commit 1dcf8eb

Please sign in to comment.