Add: UrlMap Repository 구현
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
package be.gyu.urlShortener.repository;
|
||||
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
|
||||
import be.gyu.urlShortener.entity.UrlMap;
|
||||
|
||||
public interface UrlMapRepository extends JpaRepository<UrlMap,Integer> {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user