Skip to content

Commit

Permalink
feat: Add CategoryRepository (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahyun0326 committed Mar 21, 2024
1 parent f4f85a0 commit 19b0b5a
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.beotkkot.qtudy.repository.category;

import com.beotkkot.qtudy.domain.category.Category;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface CategoryRepository extends JpaRepository<Category, Long> {

}

0 comments on commit 19b0b5a

Please sign in to comment.