Skip to content

Commit

Permalink
feat: 체중 repository 구현 #8
Browse files Browse the repository at this point in the history
  • Loading branch information
shimbaa committed Sep 4, 2024
1 parent 4bb461c commit 98fffca
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package buddyguard.mybuddyguard.weight.repository;

import buddyguard.mybuddyguard.weight.domain.Weight;
import org.springframework.data.jpa.repository.JpaRepository;

public interface WeightRepository extends JpaRepository<Weight, Long> {

}

0 comments on commit 98fffca

Please sign in to comment.