Created
January 3, 2018 03:48
-
-
Save slmanju/991911c44f58e44b072e519a93aa0794 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.manjula.todo.model.Todo; | |
import org.springframework.data.jpa.repository.JpaRepository; | |
public interface TodoRepository extends JpaRepository<Todo, Long> { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment