Add: UrlMap Repository 구현

This commit is contained in:
Gyubin-Han
2025-06-10 17:43:35 +09:00
parent 1e703d7084
commit 77b78282a1

View File

@@ -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> {
}