Skip to content

Commit

Permalink
[feat] repository 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
oosedus committed Aug 30, 2024
1 parent 7b6b648 commit fe116fa
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package com.example.letscareer.career.repository;

import com.example.letscareer.career.domain.Career;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;

@Repository
public interface CareerRepository extends JpaRepository<Career, Long> {
}

0 comments on commit fe116fa

Please sign in to comment.