source: src/main/java/com/example/eatys_app/repository/TipRepository.java

Last change on this file was b3f2adb, checked in by Aleksandar Siljanoski <acewow3@…>, 14 months ago

Adding project to repo

  • Property mode set to 100644
File size: 216 bytes
Line 
1package com.example.eatys_app.repository;
2
3import com.example.eatys_app.model.Tip;
4import org.springframework.data.jpa.repository.JpaRepository;
5
6public interface TipRepository extends JpaRepository<Tip,Integer> {
7}
Note: See TracBrowser for help on using the repository browser.