Skip to content

Commit

Permalink
[feat] Playlist 도메인, repository 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
syyling committed Mar 7, 2024
1 parent dc6fbdb commit 8a7f290
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.mookive.mookive_backend.playlist.domain.repository;

import com.mookive.mookive_backend.playlist.domain.entity.Playlist;
import org.springframework.data.jpa.repository.JpaRepository;

public interface PlaylistRepository extends JpaRepository<Playlist, Long> {
}

0 comments on commit 8a7f290

Please sign in to comment.