Skip to content

Commit

Permalink
#52 [feat] RegionJpaRepository 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
hellozo0 committed Jan 10, 2024
1 parent a31f4d3 commit 5d2a048
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.moddy.server.domain.region.repository;

import com.moddy.server.domain.region.Region;
import org.springframework.data.jpa.repository.JpaRepository;

public interface RegionJpaRepository extends JpaRepository<Region, Long> {
}

0 comments on commit 5d2a048

Please sign in to comment.