Skip to content

Commit

Permalink
feat: image 저장하는 repository 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
shoeone96 committed Jan 19, 2024
1 parent e83f62c commit bebc18a
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.backendoori.ootw.image.repository;

import com.backendoori.ootw.image.domain.Image;
import org.springframework.data.jpa.repository.JpaRepository;

public interface ImageRepository extends JpaRepository<Image, Long> {

}

0 comments on commit bebc18a

Please sign in to comment.