mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-25 15:40:49 +08:00
Add tag module with post associations
This commit is contained in:
7
src/main/java/com/openisle/repository/TagRepository.java
Normal file
7
src/main/java/com/openisle/repository/TagRepository.java
Normal file
@@ -0,0 +1,7 @@
|
||||
package com.openisle.repository;
|
||||
|
||||
import com.openisle.model.Tag;
|
||||
import org.springframework.data.jpa.repository.JpaRepository;
|
||||
|
||||
public interface TagRepository extends JpaRepository<Tag, Long> {
|
||||
}
|
||||
Reference in New Issue
Block a user