Skip to content

Commit

Permalink
#4 feat: UserRepository 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
Sehee-Lee-01 committed Nov 16, 2023
1 parent 14621ee commit 3b62670
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.example.board.repository;

import com.example.board.model.User;
import org.springframework.data.jpa.repository.JpaRepository;

public interface UserRepository extends JpaRepository<User, Long> {
}

0 comments on commit 3b62670

Please sign in to comment.