Skip to content

Commit

Permalink
Create PostHashtagRepository.java
Browse files Browse the repository at this point in the history
  • Loading branch information
youngreal committed Feb 21, 2024
1 parent 382d469 commit ed1946e
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 com.example.inflearn.infra.repository.post;

import com.example.inflearn.domain.post.domain.PostHashtag;
import org.springframework.data.jpa.repository.JpaRepository;

public interface PostHashtagRepository extends JpaRepository<PostHashtag, Long> {

}

0 comments on commit ed1946e

Please sign in to comment.