Skip to content

Commit

Permalink
feat:ResultRepository 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
byeon22 committed Feb 20, 2024
1 parent 966bcc4 commit 8c18793
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.endlesshorses.oot.custom.result.repository;

import com.endlesshorses.oot.custom.result.entity.Result;
import org.springframework.data.jpa.repository.JpaRepository;

import java.util.UUID;

public interface ResultRepository extends JpaRepository<Result, UUID> {
}

0 comments on commit 8c18793

Please sign in to comment.