Skip to content

Commit

Permalink
fix: 사용하지 않는 Dsl 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
jinsu4755 committed Dec 13, 2023
1 parent eaa13ee commit 4bfc10e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 22 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package universe.sparkle.infrastructure.persistence.repository
import org.springframework.data.jpa.repository.JpaRepository
import universe.sparkle.infrastructure.persistence.entity.UserEntity

interface UserRepository : JpaRepository<UserEntity, Long>, UserDslRepository {
interface UserRepository : JpaRepository<UserEntity, Long> {

fun findBySnsAuthCode(snsAuthCode: String): UserEntity?
}

This file was deleted.

0 comments on commit 4bfc10e

Please sign in to comment.