Skip to content
This repository has been archived by the owner on Nov 10, 2017. It is now read-only.

Commit

Permalink
#14 add PostRepository class
Browse files Browse the repository at this point in the history
  • Loading branch information
olegbal committed Jun 17, 2017
1 parent aa4dbcc commit 590631a
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.github.dregheap.repository;

import com.github.dregheap.model.Post;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface PostRepository extends MongoRepository<Post, Long> {
}

0 comments on commit 590631a

Please sign in to comment.