Skip to content

Commit

Permalink
Add saveAll 함수 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
rudeh2926 committed Jan 9, 2024
1 parent 82b13de commit 3588a53
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ import java.util.UUID

@Spi
interface UserRepositorySpi {

//TODO 2024 : 1/31 반환타입 추가하기
//suspend fun saveAll(user: List<User>): List<>

suspend fun saveUser(user: User): User
suspend fun findByIdAndStateWithCreatePending(id: UUID): User?
suspend fun findByIdAndStateWithCreated(userId: UUID): User?
Expand Down

0 comments on commit 3588a53

Please sign in to comment.